Skip to content

Commit d6e2f26

Browse files
authored
bpo-31500: Removed fixed size of IDLE config dialog. (#3664)
This one line of Serhiy Storchacka's bpo-31500 patch for is needed for other issues.
1 parent a4bb58f commit d6e2f26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

‎Lib/idlelib/configdialog.py‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def create_widgets(self):
105105
load_configs: Load pages except for extensions.
106106
activate_config_changes: Tell editors to reload.
107107
"""
108-
self.note = note = Notebook(self, width=450, height=450)
108+
self.note = note = Notebook(self)
109109
self.highpage = HighPage(note)
110110
self.fontpage = FontPage(note, self.highpage)
111111
self.keyspage = KeysPage(note)

0 commit comments

Comments
 (0)