mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-05-09 13:42:09 -05:00
Merge r9221 (the VT100 line drawing fix).
[originally from svn r9224] [r9221 == 4fd112e15ddcc135980547147c44ff1afe04f00e]
This commit is contained in:
parent
2bb89cd221
commit
d9eabbef50
@ -4940,7 +4940,9 @@ static void do_paint(Terminal *term, Context ctx, int may_optimise)
|
||||
break_run = ((tattr ^ attr) & term->attr_mask) != 0;
|
||||
|
||||
/* Special hack for VT100 Linedraw glyphs */
|
||||
if (tchar >= 0x23BA && tchar <= 0x23BD)
|
||||
if ((tchar >= 0x23BA && tchar <= 0x23BD) ||
|
||||
(j > 0 && (newline[j-1].chr >= 0x23BA &&
|
||||
newline[j-1].chr <= 0x23BD)))
|
||||
break_run = TRUE;
|
||||
|
||||
/*
|
||||
|
Loading…
x
Reference in New Issue
Block a user