Skip to content

Commit

Permalink
Merge pull request #23687 from ccordoba12/issue-23074
Browse files Browse the repository at this point in the history
PR: Set icon in constructor for `ConfigDialog` (Widgets)
  • Loading branch information
ccordoba12 authored Feb 8, 2025
2 parents a383cd8 + ab09a61 commit 302b3a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spyder/plugins/preferences/widgets/configdialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ class ConfigDialog(SidebarDialog):

# Constants
TITLE = _("Preferences")
ICON = ima.icon('configure')
MIN_WIDTH = 940 if MAC else (875 if WIN else 920)
MIN_HEIGHT = 700 if MAC else (660 if WIN else 670)

def __init__(self, parent=None):
self.ICON = ima.icon('configure')
SidebarDialog.__init__(self, parent)

# Attributes
Expand Down

0 comments on commit 302b3a5

Please sign in to comment.