fix: root.withdraw() vor messagebox statt destroy()

This commit is contained in:
2026-04-12 12:32:40 +02:00
parent c26dfa38d1
commit 3d9f95b3ee
+2 -1
View File
@@ -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()