mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-02-04 14:12: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 ? */
|
/* 'Real' blinking ? */
|
||||||
if (term->blink_is_real && (tattr & ATTR_BLINK)) {
|
if (term->blink_is_real && (tattr & ATTR_BLINK)) {
|
||||||
if (term->has_focus && term->tblinker) {
|
if (term->has_focus && term->tblinker) {
|
||||||
tchar = ' ';
|
tchar = term->ucsdata->unitab_line[(unsigned char)' '];
|
||||||
tattr &= ~CSET_MASK;
|
|
||||||
tattr |= ATTR_ACP;
|
|
||||||
}
|
}
|
||||||
tattr &= ~ATTR_BLINK;
|
tattr &= ~ATTR_BLINK;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user