Kaydet (Commit) 97be1499 authored tarafından Miss Islington (bot)'s avatar Miss Islington (bot) Kaydeden (comit) Terry Jan Reedy

[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 d6e2f26f)
üst e2593aa6
...@@ -105,7 +105,7 @@ class ConfigDialog(Toplevel): ...@@ -105,7 +105,7 @@ class ConfigDialog(Toplevel):
load_configs: Load pages except for extensions. load_configs: Load pages except for extensions.
activate_config_changes: Tell editors to reload. 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.highpage = HighPage(note)
self.fontpage = FontPage(note, self.highpage) self.fontpage = FontPage(note, self.highpage)
self.keyspage = KeysPage(note) self.keyspage = KeysPage(note)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment