From acbf889b96f60a7089d12a13bd780f3e5cc9607b Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sun, 30 Nov 2025 17:51:14 +0100 Subject: [PATCH] Include image prompt in dirty check --- concept-maker_gui.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/concept-maker_gui.py b/concept-maker_gui.py index 7200ae7..1ed798b 100644 --- a/concept-maker_gui.py +++ b/concept-maker_gui.py @@ -2806,7 +2806,15 @@ class App(TkinterDnD.Tk): # type: ignore now = self._snapshot_session_state() last = getattr(self, "_last_saved", None) if last is None: - return any([now.get("title"), now.get("description"), now.get("notes"), now.get("concept"), now.get("files")]) + return any([ + now.get("title"), + now.get("description"), + now.get("notes"), + now.get("concept"), + now.get("files"), + now.get("websites"), + now.get("image_prompt"), + ]) return now != last except Exception: # On any error, be conservative and assume not dirty to avoid noisy prompts