Commit 8b187082 authored by Alexander.Trofimov's avatar Alexander.Trofimov

fix bug 33742 🐛

parent 9ee0eb6c
......@@ -1320,7 +1320,7 @@
this.canvasOuterStyle.top = top + 'px';
this.canvasOuterStyle.width = widthStyle + 'px';
this.canvasOuterStyle.height = heightStyle + 'px';
this.canvasOuterStyle.zIndex = this.top <= 0 ? -1 : z;
this.canvasOuterStyle.zIndex = this.top < 0 ? -1 : z;
this.canvas.width = this.canvasOverlay.width = width;
this.canvas.height = this.canvasOverlay.height = height;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment