diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2017-09-19 23:45:00 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2017-09-19 23:45:00 (GMT) |
commit | 97be14996b247b853ead77fb255d7029e3cf3dc9 (patch) | |
tree | a204f51d711a7969a20e9e9a71e9f52417e9087b /Lib | |
parent | e2593aa673c0347a74c4896a519e3b8cb7b55eb4 (diff) | |
download | cpython-97be14996b247b853ead77fb255d7029e3cf3dc9.zip cpython-97be14996b247b853ead77fb255d7029e3cf3dc9.tar.gz cpython-97be14996b247b853ead77fb255d7029e3cf3dc9.tar.bz2 |
[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 d6e2f26f3f7c62a4ddbf668027d3ba27cb0e1eca)
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/idlelib/configdialog.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/idlelib/configdialog.py b/Lib/idlelib/configdialog.py index 0f530c6..a05f3b9 100644 --- a/Lib/idlelib/configdialog.py +++ b/Lib/idlelib/configdialog.py @@ -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) |