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 ae6611b commit cec2da2Copy full SHA for cec2da2
ScrollableContainers/Tk.py
@@ -144,9 +144,9 @@ def _on_canvas_enter(self, event=None):
144
:param event: Enter event.
145
'''
146
147
- self._on_mouse_scroll_up_linux = self.bind_all('<Button-4>', self._on_mouse_scroll)
148
- self._on_mouse_scroll_down_linux = self.bind_all('<Button-5>', self._on_mouse_scroll)
149
- self._on_mouse_scroll_macos_windows = self.bind_all('<MouseWheel>', self._on_mouse_scroll)
+ self.bind_all('<Button-4>', self._on_mouse_scroll)
+ self.bind_all('<Button-5>', self._on_mouse_scroll)
+ self.bind_all('<MouseWheel>', self._on_mouse_scroll)
150
151
###########################################################################
152
0 commit comments