summaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2020-07-08 11:16:08 -0400
committerLuke Smith <luke@lukesmith.xyz>2020-07-08 11:16:08 -0400
commita96508af7ce737d431d633b699d7f2cb120b3092 (patch)
treea337520766f009c5716110631eec3d12ef059325 /st.c
parent3f51ba298c70c346ed1f8257c5e180a074d6ff9b (diff)
parentcfef7fa605c6215157c2d2485305f23280b4f6fe (diff)
Merge branch 'mackarelfish-master'
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 10e4b4d..8159cb3 100644
--- a/st.c
+++ b/st.c
@@ -2765,7 +2765,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();