Skip to content

Commit

Permalink
Remote Client: Connection dialog size check on Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
dalthviz committed Jul 31, 2024
1 parent 5093bf5 commit 72bacf0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions spyder/plugins/remoteclient/widgets/connectiondialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
)
from spyder.utils.icon_manager import ima
from spyder.utils.palette import SpyderPalette
from spyder.utils.stylesheet import AppStyle, WIN
from spyder.utils.stylesheet import AppStyle, MAC, WIN
from spyder.widgets.config import SpyderConfigPage
from spyder.widgets.helperwidgets import TipWidget
from spyder.widgets.sidebardialog import SidebarDialog
Expand Down Expand Up @@ -717,8 +717,8 @@ class ConnectionDialog(SidebarDialog):
"""

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

sig_start_server_requested = Signal(str)
Expand Down

0 comments on commit 72bacf0

Please sign in to comment.