From ca93e48ad46292b081b148e1915d0b7b7a377927 Mon Sep 17 00:00:00 2001 From: PySimpleGUI Date: Tue, 26 Jul 2022 08:45:57 -0400 Subject: [PATCH] 4.60.1 patch that was released 22-May-2022 --- PySimpleGUI.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/PySimpleGUI.py b/PySimpleGUI.py index c89076cf..deb8f254 100644 --- a/PySimpleGUI.py +++ b/PySimpleGUI.py @@ -1,10 +1,13 @@ #!/usr/bin/python3 -version = __version__ = "4.60.0 Released 8-May-2022" +version = __version__ = "4.60.1 Released 22-May-2022" _change_log = """ Changelog since 4.60.0 released to PyPI on 8-May-2022 + 4.60.1 + A "dot-release" / patch for crash that occurs if the horizontal_scroll parm is set in Listbox element + Was created when the ttk scrollbars were added """ __version__ = version.split()[0] # For PEP 396 and PEP 345 @@ -15543,7 +15546,6 @@ def PackFormIntoFrame(form, containing_frame, toplevel_form): # Horizontal scrollbar if element.HorizontalScroll: - element.TKText.config(wrap='none') _make_ttk_scrollbar(element, 'h', toplevel_form) element.hsb.pack(side=tk.BOTTOM, fill='x') element.Widget.configure(xscrollcommand=element.hsb.set)