1
0
mirror of https://github.com/tiyn/st synced 2025-11-18 11:59:45 +01:00

scrollback: added ligatures patch

This commit is contained in:
2023-08-22 13:39:16 +02:00
parent c32ee66365
commit dca513f4a4
9 changed files with 927 additions and 119 deletions

3
st.c
View File

@@ -2711,7 +2711,8 @@ draw(void)
drawregion(0, 0, term.col, term.row);
if (term.scr == 0)
xdrawcursor(cx, term.c.y, term.line[term.c.y][cx],
term.ocx, term.ocy, term.line[term.ocy][term.ocx]);
term.ocx, term.ocy, term.line[term.ocy][term.ocx],
term.line[term.ocy], term.col);
term.ocx = cx;
term.ocy = term.c.y;
xfinishdraw();