diff options
author | Steven M. Gava <elguavas@python.net> | 2002-01-19 10:41:51 (GMT) |
---|---|---|
committer | Steven M. Gava <elguavas@python.net> | 2002-01-19 10:41:51 (GMT) |
commit | 72c3bf076f785aaf54d63a7e8cae29bc8282920e (patch) | |
tree | 25a7d261d1cd962735f40dc038fd51ce5b1edf99 /Lib/idlelib/ZoomHeight.py | |
parent | c628a06c709dcf0d96ad55a475a5a1318d06dba4 (diff) | |
download | cpython-72c3bf076f785aaf54d63a7e8cae29bc8282920e.zip cpython-72c3bf076f785aaf54d63a7e8cae29bc8282920e.tar.gz cpython-72c3bf076f785aaf54d63a7e8cae29bc8282920e.tar.bz2 |
changeover to new keybinding configuration implementation
Diffstat (limited to 'Lib/idlelib/ZoomHeight.py')
-rw-r--r-- | Lib/idlelib/ZoomHeight.py | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/Lib/idlelib/ZoomHeight.py b/Lib/idlelib/ZoomHeight.py index ecc306a..f2b99e9 100644 --- a/Lib/idlelib/ZoomHeight.py +++ b/Lib/idlelib/ZoomHeight.py @@ -10,14 +10,7 @@ class ZoomHeight: ('_Zoom Height', '<<zoom-height>>'), ]) ] - - windows_keydefs = { - '<<zoom-height>>': ['<Alt-F2>'], - } - unix_keydefs = { - '<<zoom-height>>': ['<Control-x><Control-z>'], - } - + def __init__(self, editwin): self.editwin = editwin |