Merge pull request #4141 from PySimpleGUI/Dev-latest

Fix window's title
This commit is contained in:
PySimpleGUI 2021-04-04 15:22:52 -04:00 committed by GitHub
commit 496ff6b98c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -25,7 +25,7 @@ import PySimpleGUI as sg
layout = [[sg.Text('Edit this program by right clicking and choosing "Edit me"')],
[sg.Button('Exit')]]
window = sg.Window('PyCharm Launch Demo', layout, right_click_menu=[[''], ['Edit Me', 'Exit',]])
window = sg.Window('Edit Me Right Click Menu Demo', layout, right_click_menu=[[''], ['Edit Me', 'Exit',]])
while True: # Event Loop
event, values = window.read()