A little cleanup

This commit is contained in:
PySimpleGUI 2021-05-02 10:46:31 -04:00
parent 3ccd004865
commit b0084a2d75
1 changed files with 3 additions and 1 deletions

View File

@ -36,7 +36,9 @@ window = sg.Window('Running Timer', layout,
auto_size_buttons=False,
keep_on_top=True,
grab_anywhere=True,
element_padding=(0, 0), finalize=True,
element_padding=(0, 0),
finalize=True,
element_justification='c',
right_click_menu=sg.MENU_RIGHT_CLICK_EDITME_EXIT)
current_time, paused_time, paused = 0, 0, False