Skip to content

Commit 9b59b4b

Browse files
authored
Merge pull request PySimpleGUI#4211 from PySimpleGUI/Dev-latest
Set ColorChooserButton target default to match other chooser buttons
2 parents 4933ffc + 5dc24b5 commit 9b59b4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

PySimpleGUI.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/python3
2-
version = __version__ = "4.39.1.8 Unreleased\nfix for TCL error when scrolling col element (Jason99020 scores again!), Button error popups with trace when bad images found, addition of size parameter to TabGroup, changed where key gets set for buttons - was causing problems with buttons that set a key explicitly, fix for grraph drag events that was caused by the realtime button fix, one more fix for realtimebutton problem, Checkbox.get now returns bool, Button gets mouseover_colors parm, fix for Debug window, changed the console message when using the word default in the theme"
2+
version = __version__ = "4.39.1.9 Unreleased\nfix for TCL error when scrolling col element (Jason99020 scores again!), Button error popups with trace when bad images found, addition of size parameter to TabGroup, changed where key gets set for buttons - was causing problems with buttons that set a key explicitly, fix for grraph drag events that was caused by the realtime button fix, one more fix for realtimebutton problem, Checkbox.get now returns bool, Button gets mouseover_colors parm, fix for Debug window, changed the console message when using the word default in the theme, set ColorChooser target default to match other chooser buttons"
33

44
__version__ = version.split()[0] # For PEP 396 and PEP 345
55

@@ -11410,7 +11410,7 @@ def CalendarButton(button_text, target=(ThisRow, -1), close_when_date_chosen=Tru
1141011410

1141111411

1141211412
# ------------------------- Calendar Chooser Button lazy function ------------------------- #
11413-
def ColorChooserButton(button_text, target=(None, None), image_filename=None, image_data=None, image_size=(None, None),
11413+
def ColorChooserButton(button_text, target=(ThisRow, -1), image_filename=None, image_data=None, image_size=(None, None),
1141411414
image_subsample=None, tooltip=None, border_width=None, size=(None, None), s=(None, None), auto_size_button=None,
1141511415
button_color=None, disabled=False, font=None, bind_return_key=False, focus=False, pad=None,
1141611416
key=None, k=None, metadata=None):

0 commit comments

Comments
 (0)