Skip to content

Commit d7c45a2

Browse files
committed
fix(GUI): connection height needs to be bigger on certain Linux distros
1 parent 3a840d4 commit d7c45a2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ardupilot_methodic_configurator/frontend_tkinter_connection_selection.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ class ConnectionSelectionWindow(BaseWindow):
155155
def __init__(self, flight_controller: FlightController, connection_result_string: str) -> None:
156156
super().__init__()
157157
self.root.title(_("Flight controller connection"))
158-
self.root.geometry("460x450") # Set the window size
158+
self.root.geometry("460x462") # Set the window size
159159

160160
# Explain why we are here
161161
if flight_controller.comport is None:

0 commit comments

Comments
 (0)