From dbcf79b4b77ccb4733adb7847e93b68147b26efd Mon Sep 17 00:00:00 2001 From: "Dr.-Ing. Amilcar do Carmo Lucas" Date: Tue, 9 Sep 2025 14:08:05 +0200 Subject: [PATCH 1/2] fix(GUI): Increase the height of the project manager window just a tiny bit. --- .../frontend_tkinter_directory_selection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ardupilot_methodic_configurator/frontend_tkinter_directory_selection.py b/ardupilot_methodic_configurator/frontend_tkinter_directory_selection.py index 2b9e5147e..30e3e4300 100755 --- a/ardupilot_methodic_configurator/frontend_tkinter_directory_selection.py +++ b/ardupilot_methodic_configurator/frontend_tkinter_directory_selection.py @@ -242,7 +242,7 @@ def __init__( # Set dynamic window size based on number of settings nr_new_project_settings = len(new_project_settings_metadata) - window_height = 550 + (nr_new_project_settings * 21) + window_height = 550 + (nr_new_project_settings * 23) self.root.geometry(f"800x{window_height}") # Set the window size # Explain why we are here From a63f39729dd08a7599ea13b91d632faa1dbdd47d Mon Sep 17 00:00:00 2001 From: "Dr.-Ing. Amilcar do Carmo Lucas" Date: Tue, 9 Sep 2025 14:56:43 +0200 Subject: [PATCH 2/2] fix(GUI): connection height needs to be bigger on certain Linux distros --- .../frontend_tkinter_connection_selection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ardupilot_methodic_configurator/frontend_tkinter_connection_selection.py b/ardupilot_methodic_configurator/frontend_tkinter_connection_selection.py index 7c5ae866e..e5946c300 100755 --- a/ardupilot_methodic_configurator/frontend_tkinter_connection_selection.py +++ b/ardupilot_methodic_configurator/frontend_tkinter_connection_selection.py @@ -155,7 +155,7 @@ class ConnectionSelectionWindow(BaseWindow): def __init__(self, flight_controller: FlightController, connection_result_string: str) -> None: super().__init__() self.root.title(_("Flight controller connection")) - self.root.geometry("460x450") # Set the window size + self.root.geometry("460x462") # Set the window size # Explain why we are here if flight_controller.comport is None: