From 7a2fcb789c824b6e4b872a51b990a28d0bd4a683 Mon Sep 17 00:00:00 2001 From: "Dr.-Ing. Amilcar do Carmo Lucas" Date: Tue, 14 May 2024 01:36:02 +0200 Subject: [PATCH] IMPROVEMENTS: Make the windows a bit bigger to be user friendlier --- MethodicConfigurator/frontend_tkinter_connection_selection.py | 2 +- MethodicConfigurator/frontend_tkinter_directory_selection.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MethodicConfigurator/frontend_tkinter_connection_selection.py b/MethodicConfigurator/frontend_tkinter_connection_selection.py index 8e0ec13..05e1d32 100644 --- a/MethodicConfigurator/frontend_tkinter_connection_selection.py +++ b/MethodicConfigurator/frontend_tkinter_connection_selection.py @@ -174,7 +174,7 @@ class ConnectionSelectionWindow(BaseWindow): def __init__(self, flight_controller: FlightController, connection_result_string: str): super().__init__() self.root.title("Flight controller connection") - self.root.geometry("400x510") # Set the window size + self.root.geometry("420x510") # Set the window size # Explain why we are here if flight_controller.comport is None: diff --git a/MethodicConfigurator/frontend_tkinter_directory_selection.py b/MethodicConfigurator/frontend_tkinter_directory_selection.py index acece0c..85ffb3c 100644 --- a/MethodicConfigurator/frontend_tkinter_directory_selection.py +++ b/MethodicConfigurator/frontend_tkinter_directory_selection.py @@ -184,7 +184,7 @@ def __init__(self, local_filesystem: LocalFilesystem): super().__init__() self.local_filesystem = local_filesystem self.root.title("Select Vehicle directory") - self.root.geometry("400x535") # Set the window size + self.root.geometry("800x535") # Set the window size # Explain why we are here if local_filesystem.vehicle_dir == LocalFilesystem.getcwd():