Merge pull request #2142 from PySimpleGUI/Dev-latest

Fixed missing "," typo
This commit is contained in:
PySimpleGUI 2019-11-05 23:33:02 -05:00 committed by GitHub
commit ac208e1b2f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ layout = [[sg.TabGroup([[
sg.Tab('Tab 2', tab2_layout)]], key='-TABGROUP-')],
[sg.Button('Read')]]
window = sg.Window('My window with tabs', layout
window = sg.Window('My window with tabs', layout,
default_element_size=(12, 1))