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.
This commit is contained in:
Zackery Spytz 2019-11-13 00:13:33 -07:00 committed by Terry Jan Reedy
parent 2d56af7a94
commit 9c2844927d
7 changed files with 48 additions and 1 deletions

View file

@ -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()