]> granicus.if.org Git - python/commitdiff
bpo-31500: Removed fixed size of IDLE config dialog. (#3664)
authorTerry Jan Reedy <tjreedy@udel.edu>
Tue, 19 Sep 2017 23:01:45 +0000 (19:01 -0400)
committerGitHub <noreply@github.com>
Tue, 19 Sep 2017 23:01:45 +0000 (19:01 -0400)
This one line of Serhiy Storchacka's bpo-31500 patch for is needed for other issues.

Lib/idlelib/configdialog.py

index 0f530c66a111d65ec63da8082fa8344a1213c78c..a05f3b957afc6c44a28c0439782cbe7a77ee84b7 100644 (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)