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)