Browse Source

Adapt display to be able to handle a changing clipping-setting while connected

samhed 10 years ago
parent
commit
6e296bfa8a
1 changed files with 6 additions and 5 deletions
  1. 6 5
      include/display.js

+ 6 - 5
include/display.js

@@ -229,13 +229,14 @@ var Display;
                         saveImg = this._drawCtx.getImageData(0, 0, img_width, img_height);
                     }
 
-                    if (canvas.width  !== width)  { canvas.width  = width; }
-                    if (canvas.height !== height) { canvas.height = height; }
-
-                    if (this._viewport) {
-                        canvas.style.height = height + 'px';
+                    if (canvas.width !== width) {
+                        canvas.width = width;
                         canvas.style.width = width + 'px';
                     }
+                    if (canvas.height !== height) {
+                        canvas.height = height;
+                        canvas.style.height = height + 'px';
+                    }
 
                     if (saveImg) {
                         this._drawCtx.putImageData(saveImg, 0, 0);