diff options
author | Zackery Spytz <zspytz@gmail.com> | 2019-11-13 07:13:33 (GMT) |
---|---|---|
committer | Terry Jan Reedy <tjreedy@udel.edu> | 2019-11-13 07:13:33 (GMT) |
commit | 9c2844927d15b2d3e21b28d62249dead02b5b597 (patch) | |
tree | 92b3e7027c11cc29aecaa95b3c98d43dec1671cf /Lib/idlelib/config.py | |
parent | 2d56af7a94fe7ec0bdf3011652558ae1b889b4a8 (diff) | |
download | cpython-9c2844927d15b2d3e21b28d62249dead02b5b597.zip cpython-9c2844927d15b2d3e21b28d62249dead02b5b597.tar.gz cpython-9c2844927d15b2d3e21b28d62249dead02b5b597.tar.bz2 |
bpo-4630: Add cursor no-blink option for IDLE (GH-16960)
This immediately toggles shell, editor, and output windows, but does not affect other input widgets.
Diffstat (limited to 'Lib/idlelib/config.py')
-rw-r--r-- | Lib/idlelib/config.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/idlelib/config.py b/Lib/idlelib/config.py index 12e6f9f..04444a3 100644 --- a/Lib/idlelib/config.py +++ b/Lib/idlelib/config.py @@ -158,6 +158,8 @@ class IdleConf: self.defaultCfg = {} self.userCfg = {} self.cfg = {} # TODO use to select userCfg vs defaultCfg + # self.blink_off_time = <first editor text>['insertofftime'] + # See https:/bugs.python.org/issue4630, msg356516. if not _utest: self.CreateConfigHandlers() |