Skip to content

Commit

Permalink
Remote client: Size change on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
dalthviz committed Aug 15, 2024
1 parent 685fffb commit 72f8ce7
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions spyder/plugins/remoteclient/widgets/connectiondialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,6 @@ def set_text(self, reasons: ValidationReasons):
class BaseConnectionPage(SpyderConfigPage, SpyderFontsMixin):
"""Base class to create connection pages."""

MAX_WIDTH = 450
MIN_HEIGHT = 450
NEW_CONNECTION = False
CONF_SECTION = "remoteclient"
Expand Down Expand Up @@ -727,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 (600 if WIN else 650)
MIN_HEIGHT = 700 if MAC else (615 if WIN else 650)
PAGE_CLASSES = [NewConnectionPage]

sig_start_server_requested = Signal(str)
Expand Down

0 comments on commit 72f8ce7

Please sign in to comment.