aboutsummaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
authorMarcel Screm <marcel@marcelscrem.com>2026-01-05 16:02:48 +0100
committerMarcel Screm <marcel@marcelscrem.com>2026-01-05 16:02:48 +0100
commit59d71f7a84b6f87002fab21a74f1f8f360eb136a (patch)
treed19d2c951ba4dc09a1543fc4dc2caaa7fc007695 /st.c
parent8cac90eb30e53bebf8b884a60b2cc75ec7c83f5f (diff)
added ligature 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 b034844..82ca8d3 100644
--- a/st.c
+++ b/st.c
@@ -2805,7 +2805,8 @@ draw(void)
drawregion(0, 0, term.col, term.row);
if (TSCREEN.off == 0)
xdrawcursor(cx, term.c.y, TLINE(term.c.y)[cx],
- term.ocx, term.ocy, TLINE(term.ocy)[term.ocx]);
+ term.ocx, term.ocy, TLINE(term.ocy)[term.ocx],
+ TLINE(term.ocy), term.col);
term.ocx = cx;
term.ocy = term.c.y;
xfinishdraw();