| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent f6a6e1f commit 8c02624
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -54,7 +54,7 @@ | |||
| 54 | 54 | ||
| 55 | 55 | """ | |
| 56 | 56 | ||
| 57 | - version = "6.3.11" | ||
| 57 | + version = "6.3.12" | ||
| 58 | 58 | ||
| 59 | 59 | ||
| 60 | 60 | ||
@@ -87,6 +87,7 @@ | |||
| 87 | 87 | 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 | |
| 88 | 88 | 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 | |
| 89 | 89 | 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 | ||
| 90 | 91 | """ | |
| 91 | 92 | ||
| 92 | 93 | ||
@@ -10533,7 +10534,9 @@ def __init__(self, title, layout=None, default_element_size=None, | |||
| 10533 | 10534 | self._last_location = (None, None) # used by a property | |
| 10534 | 10535 | self.auto_save_location = auto_save_location | |
| 10535 | 10536 | 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 | ||
| 10537 | 10540 | self.scaling = scaling if scaling is not None else DEFAULT_SCALING | |
| 10538 | 10541 | ||
| 10539 | 10542 | if self.use_custom_titlebar: | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -11,7 +11,7 @@ def readme(): | |||
| 11 | 11 | ||
| 12 | 12 | setuptools.setup( | |
| 13 | 13 | name="pysimplegui", | |
| 14 | - version="6.3.11", | ||
| 14 | + version="6.3.12", | ||
| 15 | 15 | author="PySimpleGUI", | |
| 16 | 16 | author_email="PySimpleGUI@PySimpleGUI.org", | |
| 17 | 17 | description="Python GUIs for Humans. Launched in 2018. NEW LGPL3 Version 6 released in 2026.", | |
| Back | FazBrowse Home | New Git URL |
0 commit comments