FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

Another bite of the fix-auto-save-location bug fix apple · PySimpleGUI/PySimpleGUI@8c02624 · GitHub

Commit 8c02624

Browse files
committed
Another bite of the fix-auto-save-location bug fix apple
1 parent f6a6e1f commit 8c02624

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

‎PySimpleGUI/PySimpleGUI.py‎

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555
"""
5656

57-
version = "6.3.11"
57+
version = "6.3.12"
5858

5959

6060

@@ -87,6 +87,7 @@
8787
every window is created. Rather than using Alpha to hide a window while it's being created, this version withdraws the window and uses a call I didn't
8888
know about to get the size of the window before it's fully created. master.winfo_reqwidth() master.winfo_reqheight(). Alpha was needed before so
8989
the window dimensions could be gathered to determine where to locate the window so it is centered on the screen.
90+
6.3.12 27-Aug-2026 Another bite of the fix-auto-save-location bug fix apple
9091
"""
9192

9293

@@ -10533,7 +10534,9 @@ def __init__(self, title, layout=None, default_element_size=None,
1053310534
self._last_location = (None, None) # used by a property
1053410535
self.auto_save_location = auto_save_location
1053510536
if auto_save_location is True:
10536-
self.Location = tuple(user_settings_get_entry('-LAST WINDOW LOCATION-'+title, self.Location))
10537+
saved_location = tuple(user_settings_get_entry('-LAST WINDOW LOCATION-'+title, self.Location))
10538+
if saved_location != (None, None):
10539+
self.Location = saved_location
1053710540
self.scaling = scaling if scaling is not None else DEFAULT_SCALING
1053810541

1053910542
if self.use_custom_titlebar:

‎setup.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def readme():
1111

1212
setuptools.setup(
1313
name="pysimplegui",
14-
version="6.3.11",
14+
version="6.3.12",
1515
author="PySimpleGUI",
1616
author_email="PySimpleGUI@PySimpleGUI.org",
1717
description="Python GUIs for Humans. Launched in 2018. NEW LGPL3 Version 6 released in 2026.",

0 commit comments

Comments
 (0)

Back | FazBrowse Home | New Git URL