diff --git a/PySimpleGUI.py b/PySimpleGUI.py index 0cf96db9..5f1582b2 100644 --- a/PySimpleGUI.py +++ b/PySimpleGUI.py @@ -1,5 +1,5 @@ #!/usr/bin/python3 -version = __version__ = "4.4.0.9 Unreleased Scrollable Columns, shortcuts, column sizing, window()" +version = __version__ = "4.4.0.10 Unreleased Scrollable Columns, shortcuts, column sizing, window()" # 888888ba .d88888b oo dP .88888. dP dP dP @@ -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!