summaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
authorZachIR <zachir@librem.one>2025-07-08 21:08:52 -0500
committerZachIR <zachir@librem.one>2025-07-08 21:08:52 -0500
commit1f5344705216be2234d29d9b0ea675577988caa4 (patch)
tree196ee0a839d0b807479b8b4b549f16ccfab260ef /st.c
parentaf79d1853cf8d501bbdf14b6d4b2df81bdaf1526 (diff)
Apply ligatures patch
Diffstat (limited to 'st.c')
-rw-r--r--st.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/st.c b/st.c
index 2478942..bba90d3 100644
--- a/st.c
+++ b/st.c
@@ -2730,7 +2730,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();