Skip to content

Commit

Permalink
IMPROVEMENTS: Make the windows a bit bigger to be user friendlier
Browse files Browse the repository at this point in the history
  • Loading branch information
amilcarlucas committed May 13, 2024
1 parent dd444d5 commit 7a2fcb7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand Down

0 comments on commit 7a2fcb7

Please sign in to comment.