Skip to content

Commit 97be149

Browse files
miss-islingtonterryjreedy
authored andcommitted
[3.6] bpo-31500: Removed fixed size of IDLE config dialog. (GH-3664) (#3665)
This one line of Serhiy Storchacka's bpo-31500 patch for is needed for other issues. (cherry picked from commit d6e2f26)
1 parent e2593aa commit 97be149

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)