put automatic in first tab

This commit is contained in:
VALLONGOL 2025-06-11 11:31:36 +02:00
parent a716ca7e96
commit 8a8b205302

View File

@ -309,12 +309,12 @@ class GDBGui(tk.Tk):
def _create_mode_notebook_widgets(self, parent_frame: ttk.Frame): # (Invariato)
mode_notebook = ttk.Notebook(parent_frame)
mode_notebook.grid(row=1, column=0, columnspan=1, sticky="nsew", pady=5, padx=0)
manual_debug_frame = ttk.Frame(mode_notebook, padding="5")
mode_notebook.add(manual_debug_frame, text="Manual Debug")
self._populate_manual_debug_tab(manual_debug_frame)
self.automated_exec_frame = ttk.Frame(mode_notebook, padding="10")
mode_notebook.add(self.automated_exec_frame, text="Automated Profile Execution")
self._populate_automated_execution_tab(self.automated_exec_frame)
manual_debug_frame = ttk.Frame(mode_notebook, padding="5")
mode_notebook.add(manual_debug_frame, text="Manual Debug")
self._populate_manual_debug_tab(manual_debug_frame)
def _populate_manual_debug_tab(self, parent_tab_frame: ttk.Frame): # (Invariato)
parent_tab_frame.columnconfigure(0, weight=1)