mirror of
https://github.com/python/cpython.git
synced 2025-09-30 12:21:51 +00:00
[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 d6e2f26f3f
)
This commit is contained in:
parent
e2593aa673
commit
97be14996b
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue