From 8a8b2053028dfda87b0ea24c2d712c101ca03f83 Mon Sep 17 00:00:00 2001 From: VALLONGOL Date: Wed, 11 Jun 2025 11:31:36 +0200 Subject: [PATCH] put automatic in first tab --- cpp_python_debug/gui/main_window.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cpp_python_debug/gui/main_window.py b/cpp_python_debug/gui/main_window.py index 2583188..1c3e3f0 100644 --- a/cpp_python_debug/gui/main_window.py +++ b/cpp_python_debug/gui/main_window.py @@ -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)