HTML Tutorial
HTML Tutorial p { color: red } def main(): """Run event loop.""" window = sg.Window('Spacestills', LAYOUT, finalize=True) current_still = refresh(window) delta = DELTA next_reload_time = datetime.now() + timedelta(seconds=delta) while True: event, values = window.read(timeout=100) if event in (sg.WIN_CLOSED, 'Exit'): break elif ((event == '-RELOAD-') or (values['-AUTORELOAD-'] and timeout_due(next_reload_time))): current_still = refresh(window, values['-RESIZE-']) if values['-AUTORELOAD-']: next_reload_time = next_timeout(delta) elif event == '-RESIZE-': current_still = change_aspect_ratio( window, current_still, current_still.new_size()) elif event == '-SAVE-': filename = sg.popup_get_file( 'File na...