1
0
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:
Simon Tatham
2002-10-15 16:38:10 +00:00
parent 69f78385ab
commit 6f9ce1b724
2 changed files with 3 additions and 1 deletions

View File

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