Fix for Text Element being too small in Pattern 2

This commit is contained in:
PySimpleGUI 2019-11-22 11:37:04 -05:00
parent 14cc0dc0cf
commit c59c31fbb1
2 changed files with 2 additions and 2 deletions

View File

@ -1979,7 +1979,7 @@ This example introduces the concept of "keys". Keys are super important in PySi
```python ```python
import PySimpleGUI as sg import PySimpleGUI as sg
layout = [[sg.Text('Your typed chars appear here:'), sg.Text('', key='_OUTPUT_')], layout = [[sg.Text('Your typed chars appear here:'), sg.Text('', size=(12,1), key='_OUTPUT_')],
[sg.Input(key='_IN_')], [sg.Input(key='_IN_')],
[sg.Button('Show'), sg.Button('Exit')]] [sg.Button('Show'), sg.Button('Exit')]]

View File

@ -1979,7 +1979,7 @@ This example introduces the concept of "keys". Keys are super important in PySi
```python ```python
import PySimpleGUI as sg import PySimpleGUI as sg
layout = [[sg.Text('Your typed chars appear here:'), sg.Text('', key='_OUTPUT_')], layout = [[sg.Text('Your typed chars appear here:'), sg.Text('', size=(12,1), key='_OUTPUT_')],
[sg.Input(key='_IN_')], [sg.Input(key='_IN_')],
[sg.Button('Show'), sg.Button('Exit')]] [sg.Button('Show'), sg.Button('Exit')]]