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:
parent
de34bdac6d
commit
70f8e2cd74
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user