Merge pull request #2753 from PySimpleGUI/Dev-latest

Removed finalize... not needed
This commit is contained in:
PySimpleGUI 2020-03-31 19:03:35 -04:00 committed by GitHub
commit 693c069011
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ win_size = (xx+size, 2*x0)
layout = [[sg.Graph(canvas_size=win_size, graph_bottom_left=(0, 0),
graph_top_right=win_size, key='-GRAPH-')]]
window = sg.Window('Fourier', layout=layout, finalize=True)
window = sg.Window('Fourier', layout=layout)
draw = window['-GRAPH-']
i = 0