1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-25 01:02:24 +00:00

Blinking text was broken on pterm. This should fix it.

[originally from svn r2732]
This commit is contained in:
Simon Tatham 2003-01-27 15:44:48 +00:00
parent de34bdac6d
commit 70f8e2cd74

View File

@ -3175,9 +3175,7 @@ static void do_paint(Terminal *term, Context ctx, int may_optimise)
/* 'Real' blinking ? */
if (term->blink_is_real && (tattr & ATTR_BLINK)) {
if (term->has_focus && term->tblinker) {
tchar = ' ';
tattr &= ~CSET_MASK;
tattr |= ATTR_ACP;
tchar = term->ucsdata->unitab_line[(unsigned char)' '];
}
tattr &= ~ATTR_BLINK;
}