auto-git:

[change] concept-maker_gui.py
This commit is contained in:
Victor Giers
2025-11-30 14:45:23 +01:00
parent 5841abccfb
commit 90e8a6553e

View File

@@ -2961,8 +2961,8 @@ class App(TkinterDnD.Tk): # type: ignore
if not model or model == "Select model...": if not model or model == "Select model...":
self._ui(lambda: messagebox.showinfo("Select model", "Please select a model first.")) self._ui(lambda: messagebox.showinfo("Select model", "Please select a model first."))
return return
if not self.files and not self.notes.get("1.0", tk.END).strip(): if not self.files and not self.websites and not self.notes.get("1.0", tk.END).strip():
self._ui(lambda: messagebox.showinfo("Nothing to search", "Add files or write some notes first.")) self._ui(lambda: messagebox.showinfo("Nothing to search", "Add files/websites or write some notes first."))
return return
threading.Thread(target=self._prior_art_thread, daemon=True).start() threading.Thread(target=self._prior_art_thread, daemon=True).start()