From 3964320a731def870e1c28bc8bae05310decc949 Mon Sep 17 00:00:00 2001 From: Shivesh Mandalia Date: Wed, 22 Sep 2021 20:30:34 +0100 Subject: Proper drawing of ligatures - Patch st-ligatures-scrollback-0.8.4 --- st.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'st.c') diff --git a/st.c b/st.c index 74d4391..15f8f96 100644 --- a/st.c +++ b/st.c @@ -2668,7 +2668,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(); -- cgit v1.2.3