mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-03 04:22:47 -05:00
Patch to RDB's blinking cursor: make it configurable and by default
off. It's terribly distracting. [originally from svn r423]
This commit is contained in:
@ -1535,8 +1535,10 @@ static void do_paint (Context ctx, int may_optimise){
|
||||
|
||||
if (cursor_on) {
|
||||
if (has_focus) {
|
||||
if (blinker) cursor = ATTR_ACTCURS;
|
||||
else cursor = 0;
|
||||
if (blinker || !cfg.blink_cur)
|
||||
cursor = ATTR_ACTCURS;
|
||||
else
|
||||
cursor = 0;
|
||||
}
|
||||
else
|
||||
cursor = ATTR_PASCURS;
|
||||
|
Reference in New Issue
Block a user