From 884493aa4e1452608c70856074ccb4a7f3a33bbe Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sun, 30 Nov 2025 07:40:35 +0100 Subject: [PATCH] auto-git: [change] concept-maker_gui.py --- concept-maker_gui.py | 1 + 1 file changed, 1 insertion(+) diff --git a/concept-maker_gui.py b/concept-maker_gui.py index e4acd2f..67d7736 100644 --- a/concept-maker_gui.py +++ b/concept-maker_gui.py @@ -767,6 +767,7 @@ class App(TkinterDnD.Tk): # type: ignore notes_actions = ttk.Frame(notes_frame) notes_actions.pack(side=tk.TOP, fill=tk.X, padx=(8,0), pady=(6,6)) + self.notes_actions = notes_actions ttk.Button(notes_actions, text="Rephrase", command=self.on_rephrase).pack(side=tk.LEFT) ttk.Button(notes_actions, text="Extend", command=self.on_extend).pack(side=tk.LEFT, padx=(6,0)) ttk.Button(notes_actions, text="Generate Concept", command=self.on_generate).pack(side=tk.LEFT, padx=(6,0))