GUI: Make status window always come to front

This commit is contained in:
deajan 2025-05-02 10:52:22 +02:00
parent 7b6a3ff4be
commit 7dc28e836c

View file

@ -255,7 +255,8 @@ def gui_thread_runner(
)
# Finalize the window
event, _ = progress_window.read(timeout=0.01)
progress_window.bring_to_front()
# window.bring_to_front() does not work, so we need to force focus on it
progress_window.TKroot.focus_force()
read_stdout_queue = __stdout
read_stderr_queue = True