From 3d9f95b3ee04947d662a3ecf00b2490c195300ab Mon Sep 17 00:00:00 2001 From: Vitali Graf Date: Sun, 12 Apr 2026 12:32:40 +0200 Subject: [PATCH] fix: root.withdraw() vor messagebox statt destroy() --- whisper_local/tray/_download_progress.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/whisper_local/tray/_download_progress.py b/whisper_local/tray/_download_progress.py index 1ff4cff..0b5c8c0 100644 --- a/whisper_local/tray/_download_progress.py +++ b/whisper_local/tray/_download_progress.py @@ -123,8 +123,9 @@ def load_model_with_progress( root.mainloop() if error[0] is not None: - root.destroy() + root.withdraw() messagebox.showerror("Fehler beim Modell-Download", str(error[0])) + root.destroy() sys.exit(1) root.destroy()