summaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
authorLuke Smith <luke@lukesmith.xyz>2020-07-08 11:15:08 -0400
committerLuke Smith <luke@lukesmith.xyz>2020-07-08 11:15:08 -0400
commitcfef7fa605c6215157c2d2485305f23280b4f6fe (patch)
treea337520766f009c5716110631eec3d12ef059325 /st.c
parent3f51ba298c70c346ed1f8257c5e180a074d6ff9b (diff)
parent6bf7545fc98cd0d42eb727d596215daac809c478 (diff)
Merge branch 'master' of https://github.com/mackarelfish/st into 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();