Getting up to date....

This commit is contained in:
PySimpleGUI 2021-01-31 13:27:17 -05:00
parent 9efd1a44aa
commit ef7b146596
3 changed files with 188 additions and 188 deletions

View File

@ -3833,7 +3833,7 @@ window = sg.Window('My new window', layout, finalize=True)
window['-TEXT-'].update('My new text value')
while True: # Event Loop
event, values = window.read()
event, values = window.read()
if event == sg.WIN_CLOSED:
break
```

View File

@ -4830,7 +4830,7 @@ hide_row()
### print
Print like Python normally prints except route the output to a multline element and also add colors if desired
Print like Python normally prints except route the output to a multiline element and also add colors if desired
colors -(str, str) or str. A combined text/background color definition in a single parameter

View File

@ -5211,7 +5211,7 @@ window = sg.Window('My new window', layout, finalize=True)
window['-TEXT-'].update('My new text value')
while True: # Event Loop
event, values = window.read()
event, values = window.read()
if event == sg.WIN_CLOSED:
break
```