| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 8d00420 commit b42b1fb
2 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -54,14 +54,16 @@ | |||
| 54 | 54 | ||
| 55 | 55 | """ | |
| 56 | 56 | ||
| 57 | - version = "6.3" | ||
| 57 | + version = "6.3.1" | ||
| 58 | 58 | ||
| 59 | 59 | ||
| 60 | 60 | ||
| 61 | 61 | """ | |
| 62 | 62 | Changelog since last major release | |
| 63 | 63 | ||
| 64 | 64 | 6.3 2-Aug-2026 Released to GitHub | |
| 65 | + | ||
| 66 | + 6.3.1 3-Aug-2026 Fixed a COLOR_SYSTEM_DEFAULT bug in Input.update. | ||
| 65 | 67 | """ | |
| 66 | 68 | ||
| 67 | 69 | ||
@@ -2277,9 +2279,11 @@ def update(self, value=None, disabled=None, select=None, visible=None, text_colo | |||
| 2277 | 2279 | self.TKEntry.icursor(move_cursor_to) | |
| 2278 | 2280 | # since value changed, update the placeholder | |
| 2279 | 2281 | self.showing_placeholder = False # set to not showing so it'll get set up again if needed | |
| 2280 | - self.TKEntry.config(fg=self.TextColor) | ||
| 2281 | - self.TKEntry.config(bg=self.BackgroundColor) | ||
| 2282 | + _widget_set_fg_color(self.TKEntry, self.TextColor) | ||
| 2283 | + _widget_set_bg_color(self.TKEntry, self.BackgroundColor) | ||
| 2282 | 2284 | self.TKEntry.config(justify=self.tk_justify) | |
| 2285 | + # self.TKEntry.config(fg=self.TextColor) | ||
| 2286 | + # self.TKEntry.config(bg=self.BackgroundColor) | ||
| 2283 | 2287 | self.update_placeholder() | |
| 2284 | 2288 | if select is True: | |
| 2285 | 2289 | self.TKEntry.select_range(0, 'end') | |
| 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", | ||
| 14 | + version="6.3.1", | ||
| 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