Skip to content

Commit

Permalink
Remote client: Further tweak dialog min height on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
dalthviz committed Aug 16, 2024
1 parent 72f8ce7 commit 7626657
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spyder/plugins/remoteclient/widgets/connectiondialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -726,7 +726,7 @@ class ConnectionDialog(SidebarDialog):

TITLE = _("Remote connections")
MIN_WIDTH = 900 if MAC else (850 if WIN else 860)
MIN_HEIGHT = 700 if MAC else (615 if WIN else 650)
MIN_HEIGHT = 700 if MAC else (635 if WIN else 650)
PAGE_CLASSES = [NewConnectionPage]

sig_start_server_requested = Signal(str)
Expand Down

0 comments on commit 7626657

Please sign in to comment.