Thanks to visit codestin.com Credit goes to github.com
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 c93cf1f commit 62f9ceeCopy full SHA for 62f9cee
lib/matplotlib/backends/backend_wx.py
@@ -772,8 +772,8 @@ def _onMouseButton(self, event):
772
wx.MOUSE_BTN_LEFT: MouseButton.LEFT,
773
wx.MOUSE_BTN_MIDDLE: MouseButton.MIDDLE,
774
wx.MOUSE_BTN_RIGHT: MouseButton.RIGHT,
775
- wx.MOUSE_BTN_AUX1: MouseButton.FORWARD,
776
- wx.MOUSE_BTN_AUX2: MouseButton.BACK,
+ wx.MOUSE_BTN_AUX1: MouseButton.BACK,
+ wx.MOUSE_BTN_AUX2: MouseButton.FORWARD,
777
}
778
button = event.GetButton()
779
button = button_map.get(button, button)
0 commit comments