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: 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