From 3b6b5c78c71ab7571e3e23047290a3053fdfd3d9 Mon Sep 17 00:00:00 2001 From: Victor Giers Date: Sun, 30 Nov 2025 14:43:09 +0100 Subject: [PATCH] auto-git: [change] concept-maker_gui.py --- concept-maker_gui.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/concept-maker_gui.py b/concept-maker_gui.py index c8222a0..808c8c9 100644 --- a/concept-maker_gui.py +++ b/concept-maker_gui.py @@ -796,7 +796,7 @@ class App(TkinterDnD.Tk): # type: ignore paned.add(right, weight=1) # Files table (with controls inside the same frame) - files_frame = ttk.LabelFrame(left, text="Files (drag & drop or use buttons)") + files_frame = ttk.LabelFrame(left, text="Files & Websites (drag & drop files; add URLs)") files_frame.pack(side=tk.TOP, fill=tk.BOTH, expand=False, pady=(0,8)) # Inner container for tree + scrollbar to allow controls below @@ -838,6 +838,7 @@ class App(TkinterDnD.Tk): # type: ignore file_controls.pack(side=tk.TOP, fill=tk.X, padx=(8,0), pady=(4,8)) ttk.Button(file_controls, text="Add Files", command=self.on_add_files).pack(side=tk.LEFT) ttk.Button(file_controls, text="Add Folder", command=self.on_add_folder).pack(side=tk.LEFT, padx=(6,0)) + ttk.Button(file_controls, text="Add Website", command=self.on_add_website).pack(side=tk.LEFT, padx=(6,0)) ttk.Button(file_controls, text="Remove Selected", command=self.on_remove_selected).pack(side=tk.LEFT, padx=(6,0)) ttk.Button(file_controls, text="Clear All", command=self.on_clear_all).pack(side=tk.LEFT, padx=(6,0))