From 45086839991735973255e2347ddcd435d955154e Mon Sep 17 00:00:00 2001 From: MikeTheWatchGuy Date: Thu, 5 Sep 2019 10:47:54 -0400 Subject: [PATCH] Shift + Mousewheel will scroll a column horizontally --- PySimpleGUI.py | 1 + 1 file changed, 1 insertion(+) diff --git a/PySimpleGUI.py b/PySimpleGUI.py index 0cf96db9..69452736 100644 --- a/PySimpleGUI.py +++ b/PySimpleGUI.py @@ -3839,6 +3839,7 @@ class TkScrollableFrame(tk.Frame): self.bind('', self.set_scrollregion) self.TKFrame.bind_all("", self.yscroll) # THIS IS IT! The line of code that enables the column to be scrolled with the mouse! + self.TKFrame.bind_all("", self.xscroll) # THIS IS IT! The line of code that enables the column to be scrolled with the mouse!