From 90e8a6553ecdab06acaff1c7637b582cffa4ce43 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sun, 30 Nov 2025 14:45:23 +0100 Subject: [PATCH] auto-git: [change] concept-maker_gui.py --- concept-maker_gui.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/concept-maker_gui.py b/concept-maker_gui.py index f7bbcc8..dda7b38 100644 --- a/concept-maker_gui.py +++ b/concept-maker_gui.py @@ -2961,8 +2961,8 @@ class App(TkinterDnD.Tk): # type: ignore if not model or model == "Select model...": self._ui(lambda: messagebox.showinfo("Select model", "Please select a model first.")) return - if not self.files 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.")) + 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/websites or write some notes first.")) return threading.Thread(target=self._prior_art_thread, daemon=True).start()