Fixed missing "," typo

This commit is contained in:
PySimpleGUI 2019-11-05 23:32:34 -05:00
parent 309c9d50e2
commit 9582d017b0
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.Tab('Tab 2', tab2_layout)]], key='-TABGROUP-')],
[sg.Button('Read')]] [sg.Button('Read')]]
window = sg.Window('My window with tabs', layout window = sg.Window('My window with tabs', layout,
default_element_size=(12, 1)) default_element_size=(12, 1))