mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-07-06 22:12:47 -05:00
Support for blinking text and blinking cursor. Won't actually be
accessible until there's a way to configure it on, but it worked in tests. [originally from svn r2067]
This commit is contained in:
@ -799,6 +799,7 @@ gint timer_func(gpointer data)
|
||||
}
|
||||
|
||||
term_update();
|
||||
term_blink(0);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
@ -825,6 +826,7 @@ void pty_input_func(gpointer data, gint sourcefd, GdkInputCondition condition)
|
||||
}
|
||||
if (ret > 0)
|
||||
from_backend(0, buf, ret);
|
||||
term_blink(1);
|
||||
term_out();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user