Update for some code not indented correctly.

This commit is contained in:
Jason Yang 2021-01-26 17:57:05 +08:00 committed by GitHub
parent 4378dfece7
commit 4dfdfe9eaa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 5 deletions

View File

@ -5517,7 +5517,7 @@ Here is ***some*** of the code patterns you'll find when looking through the dem
```python ```python
import PySimpleGUI as sg import PySimpleGUI as sg
# Design pattern 2 - First window remains active # Design pattern 1 - First window remains active
layout = [[ sg.Text('Window 1'),], layout = [[ sg.Text('Window 1'),],
[sg.Input(do_not_clear=True)], [sg.Input(do_not_clear=True)],
@ -5552,7 +5552,7 @@ while True:
```python ```python
import PySimpleGUIQt as sg import PySimpleGUIQt as sg
# Design pattern 1 - First window does not remain active # Design pattern 2 - First window does not remain active
layout = [[ sg.Text('Window 1'),], layout = [[ sg.Text('Window 1'),],
[sg.Input(do_not_clear=True)], [sg.Input(do_not_clear=True)],