mirror of
https://github.com/novnc/noVNC.git
synced 2026-06-07 12:54:37 +00:00
Fixed so that viewportDrag works even if no mouse button is selected.
This commit is contained in:
@@ -543,7 +543,7 @@ function onMouseButton(e, down) {
|
||||
}
|
||||
//Util.Debug("mouse " + pos.x + "," + pos.y + " down: " + down +
|
||||
// " bmask: " + bmask + "(evt.button: " + evt.button + ")");
|
||||
if (bmask > 0 && conf.onMouseButton) {
|
||||
if (conf.onMouseButton) {
|
||||
Util.Debug("onMouseButton " + (down ? "down" : "up") +
|
||||
", x: " + pos.x + ", y: " + pos.y + ", bmask: " + bmask);
|
||||
conf.onMouseButton(pos.x, pos.y, down, bmask);
|
||||
|
||||
Reference in New Issue
Block a user