diff options
author | Terry Jan Reedy <tjreedy@udel.edu> | 2017-09-19 19:01:45 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-19 19:01:45 -0400 |
commit | d6e2f26f3f7c62a4ddbf668027d3ba27cb0e1eca (patch) | |
tree | dcad7b500c945d913f0946bd06957e33121c9d4c /Lib/idlelib/configdialog.py | |
parent | a4bb58fda48b75427661c313607bc84dd12c0354 (diff) | |
download | cpython-git-d6e2f26f3f7c62a4ddbf668027d3ba27cb0e1eca.tar.gz |
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.
Diffstat (limited to 'Lib/idlelib/configdialog.py')
-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 0f530c66a1..a05f3b957a 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) |