Fix typo causing mouse to be grabbed
The mouse was getting stuck in the down state
This commit is contained in:
parent
f0e4548b16
commit
bf6b6939e9
|
|
@ -550,7 +550,7 @@ var RFB;
|
|||
if (down) {
|
||||
this._mouse_buttonMask |= bmask;
|
||||
} else {
|
||||
this._mouse_buttonMaks ^= bmask;
|
||||
this._mouse_buttonMask ^= bmask;
|
||||
}
|
||||
|
||||
if (this._viewportDrag) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue