Merge pull request #2779 from PySimpleGUI/Dev-latest

Made import use PySimpleGUI instead of web, removed the shortcut from…
This commit is contained in:
PySimpleGUI 2020-04-06 14:59:43 -04:00 committed by GitHub
commit 7a9807dffb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -71,7 +71,8 @@ def create_settings_window(settings):
def create_main_window(settings):
sg.theme(settings['theme'])
layout = [[sg.Menu([['&File', []], ['&Edit', ['&Settings'], ],['&Help', '&About...'],])],
layout = [
[sg.Menu([['File', ['Open']], ['Edit', ['Settings'], ],['Help', 'About...'],])],
[sg.T('This is my main application')],
[sg.T('Add your primary window stuff in here')],
[sg.B('Ok'), sg.B('Exit'), sg.B('Change Settings')]]