We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 947ce06 commit 3b56437Copy full SHA for 3b56437
changes.md
@@ -2,6 +2,7 @@
2
3
## Changes in 4.4.x
4
1. Fix - toggling of statbox was not working in all situations
5
+2. Fix - for mouse rect zooming use only left mouse button
6
7
8
## Changes in 4.4.3
scripts/JSRootPainter.js
@@ -5071,6 +5071,9 @@
5071
5072
if (this.zoom_kind > 100) return;
5073
5074
+ // ignore all events from non-left button
5075
+ if ((d3.event.which || d3.event.button) !== 1) return;
5076
+
5077
d3.event.preventDefault();
5078
5079
this.clearInteractiveElements();
0 commit comments