Bläddra i källkod

Fixed issue of mouse move event not checking if a surface is set first.

dev-bank
Bryan Miller 6 år sedan
förälder
incheckning
1249dd44a3
1 ändrade filer med 6 tillägg och 4 borttagningar
  1. +6
    -4
      app/js/ctrls/CTRLPainter.js

+ 6
- 4
app/js/ctrls/CTRLPainter.js Visa fil

@@ -217,10 +217,12 @@ class CTRLPainter {
this.__brushLastPos[1] = this.__brushPos[1];
this.__brushPos[0] = e.x;
this.__brushPos[1] = e.y;
var x = Math.floor((this.__brushPos[0] - this.__offset[0]) * (1.0 / this.__scale));
var y = Math.floor((this.__brushPos[1] - this.__offset[1]) * (1.0 / this.__scale));
if (x >= 0 && x < this.__surface.width && y >= 0 && y < this.__surface.height){
RenderD();
if (this.__surface !== null){
var x = Math.floor((this.__brushPos[0] - this.__offset[0]) * (1.0 / this.__scale));
var y = Math.floor((this.__brushPos[1] - this.__offset[1]) * (1.0 / this.__scale));
if (x >= 0 && x < this.__surface.width && y >= 0 && y < this.__surface.height){
RenderD();
}
}
}).bind(this);
input.listen("mousemove", handle_mousemove);

Laddar…
Avbryt
Spara