summaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
authormackarelfish <mackarelfish93@gmail.com>2020-05-12 03:46:52 +0700
committermackarelfish <mackarelfish93@gmail.com>2020-05-12 03:46:52 +0700
commit4edc7282ab841142e970dcb4f03f251bb5ed7292 (patch)
tree5b389d84174f7640768832d4e07eb6da404570a1 /st.c
parentfdf3989005a9003b90a3e98d4ba5684d52f11d3c (diff)
Added 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 192360b..c4d3ee3 100644
--- a/st.c
+++ b/st.c
@@ -2747,7 +2747,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();