commit
2a0e19c235
|
@ -84,7 +84,7 @@ window = make_window()
|
|||
|
||||
while True:
|
||||
event, values = window.read()
|
||||
sg.Print(event, values)
|
||||
# sg.Print(event, values)
|
||||
if event == sg.WIN_CLOSED or event == 'Exit':
|
||||
break
|
||||
if event == 'Edit Me':
|
||||
|
@ -95,6 +95,7 @@ while True:
|
|||
window = make_window()
|
||||
if event == '-USE CUSTOM TITLEBAR-':
|
||||
use_custom_titlebar = values['-USE CUSTOM TITLEBAR-']
|
||||
sg.set_options(use_custom_titlebar=use_custom_titlebar)
|
||||
window.close()
|
||||
window = make_window()
|
||||
elif event == 'Version':
|
||||
|
|
|
@ -29,7 +29,7 @@ def main():
|
|||
|
||||
layout = [[sg.Image(blank, key=('-IMAGE-', i), p=0, subsample=subsample) for i in range(max_digits)]]
|
||||
|
||||
window = sg.Window('', layout, background_color='black', no_titlebar=True, grab_anywhere=True, right_click_menu=right_click_menu, location=location, enable_close_attempted_event=True, alpha_channel=alpha, metadata=subsample)
|
||||
window = sg.Window('', layout, background_color='black', no_titlebar=True, grab_anywhere=True, right_click_menu=right_click_menu, location=location, keep_on_top=True, enable_close_attempted_event=True, alpha_channel=alpha, metadata=subsample)
|
||||
|
||||
while True:
|
||||
event, values = window.read(timeout=300)
|
||||
|
|
Loading…
Reference in New Issue