Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading