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.
This commit is contained in:
Terry Jan Reedy 2017-09-19 19:01:45 -04:00 committed by GitHub
parent a4bb58fda4
commit d6e2f26f3f
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ class ConfigDialog(Toplevel):
load_configs: Load pages except for extensions.
activate_config_changes: Tell editors to reload.
"""
self.note = note = Notebook(self, width=450, height=450)
self.note = note = Notebook(self)
self.highpage = HighPage(note)
self.fontpage = FontPage(note, self.highpage)
self.keyspage = KeysPage(note)