Skip to content

Commit 56c30e4

Browse files
committed
Added back left arrow symbol, tclversion_detailed exposed
1 parent b8344a5 commit 56c30e4

1 file changed

Lines changed: 5 additions & 6 deletions

File tree

PySimpleGUI.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/python3
2-
version = __version__ = "4.28.0.17 Unreleased 3-Aug-2020\nAdded a referesh to visiblity_changed (an existing function but blank), added Column.contents_changed which will update the scrollbar so corrently match the contents, separators expand only in 1 direction now, added SYBOOLS for arrows circle square, dark grey 8 theme, when closing window don't delete the tkroot variable and rows but instead set to None, dark grey 9 theme, replaced check for darkwin with try/except for wm_overrideredirect, fix for Column/window element justification, new vertical_alignment parm for Columns, vertical_alignment parm added to Frame, vertical_alignment added to pin func, vtop/vcenter/vbottom vertical alignment layout helper funcs, fixed statusbar expansion, added disabled button to theme previewer, grab anywhere stop motion was setting position to None and causing error. changed to event.x, expanded main to include popup tests, made vtop/vcenter/vbottom capable of taking an entire row as well as a single element, grab parameter for Text Element"
2+
version = __version__ = "4.28.0.18 Unreleased 3-Aug-2020\nAdded a referesh to visiblity_changed (an existing function but blank), added Column.contents_changed which will update the scrollbar so corrently match the contents, separators expand only in 1 direction now, added SYBOOLS for arrows circle square, dark grey 8 theme, when closing window don't delete the tkroot variable and rows but instead set to None, dark grey 9 theme, replaced check for darkwin with try/except for wm_overrideredirect, fix for Column/window element justification, new vertical_alignment parm for Columns, vertical_alignment parm added to Frame, vertical_alignment added to pin func, vtop/vcenter/vbottom vertical alignment layout helper funcs, fixed statusbar expansion, added disabled button to theme previewer, grab anywhere stop motion was setting position to None and causing error. changed to event.x, expanded main to include popup tests, made vtop/vcenter/vbottom capable of taking an entire row as well as a single element, grab parameter for Text Element, added symbol left, added tclversion_detailed"
33

44
port = 'PySimpleGUI'
55

@@ -420,7 +420,7 @@ def wrapper(*args, **kwargs):
420420
SYMBOL_CIRCLE_OUTLINE = '◯'
421421
SYMBOL_UP = '▲'
422422
SYMBOL_RIGHT = '►'
423-
SYMBOL_DOWN = ''
423+
SYMBOL_LEFT = ''
424424
SYMBOL_DOWN = '▼'
425425
SYMBOL_X = '❎'
426426

@@ -751,7 +751,6 @@ def _TextClickedHandler(self, event):
751751
:param event:
752752

753753
"""
754-
print('Text clicked')
755754
self._generic_callback_handler(self.DisplayText)
756755
return
757756

@@ -17676,9 +17675,9 @@ def VerLine(version, description, justification='r', size=(30,1)):
1767617675
#------------------------ Set the "Official PySimpleGUI Theme Colors" ------------------------
1767717676
theme(CURRENT_LOOK_AND_FEEL)
1767817677

17679-
__tclversion_detailed__ = tkinter.Tcl().eval('info patchlevel')
17680-
if __tclversion_detailed__.startswith('8.5'):
17681-
warnings.warn('You are running a VERY old version of tkinter {}'.format(__tclversion_detailed__), UserWarning)
17678+
tclversion_detailed = tkinter.Tcl().eval('info patchlevel')
17679+
if tclversion_detailed.startswith('8.5'):
17680+
warnings.warn('You are running a VERY old version of tkinter {}'.format(tclversion_detailed), UserWarning)
1768217681
# -------------------------------- ENTRY POINT IF RUN STANDALONE -------------------------------- #
1768317682
if __name__ == '__main__':
1768417683
# To execute the upgrade from command line, type:

0 commit comments

Comments
 (0)