Fix typo causing mouse to be grabbed

The mouse was getting stuck in the down state
This commit is contained in:
Hamilton Turner 2014-09-19 13:16:17 -04:00
parent f0e4548b16
commit bf6b6939e9
1 changed files with 1 additions and 1 deletions

View File

@ -550,7 +550,7 @@ var RFB;
if (down) { if (down) {
this._mouse_buttonMask |= bmask; this._mouse_buttonMask |= bmask;
} else { } else {
this._mouse_buttonMaks ^= bmask; this._mouse_buttonMask ^= bmask;
} }
if (this._viewportDrag) { if (this._viewportDrag) {