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

Fixed a COLOR_SYSTEM_DEFAULT bug in Input.update. · PySimpleGUI/PySimpleGUI@b42b1fb · GitHub

Commit b42b1fb

Browse files
committed
Fixed a COLOR_SYSTEM_DEFAULT bug in Input.update.
1 parent 8d00420 commit b42b1fb

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

‎PySimpleGUI/PySimpleGUI.py‎

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,16 @@
5454

5555
"""
5656

57-
version = "6.3"
57+
version = "6.3.1"
5858

5959

6060

6161
"""
6262
Changelog since last major release
6363

6464
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.
6567
"""
6668

6769

@@ -2277,9 +2279,11 @@ def update(self, value=None, disabled=None, select=None, visible=None, text_colo
22772279
self.TKEntry.icursor(move_cursor_to)
22782280
# since value changed, update the placeholder
22792281
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)
22822284
self.TKEntry.config(justify=self.tk_justify)
2285+
# self.TKEntry.config(fg=self.TextColor)
2286+
# self.TKEntry.config(bg=self.BackgroundColor)
22832287
self.update_placeholder()
22842288
if select is True:
22852289
self.TKEntry.select_range(0, 'end')

‎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",
14+
version="6.3.1",
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