1
0
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:
Simon Tatham
2000-03-17 10:46:59 +00:00
parent 455cc2d387
commit 7d85289621
5 changed files with 16 additions and 2 deletions

View File

@ -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;