diff options
author | Luke Smith <luke@lukesmith.xyz> | 2020-07-08 11:15:08 -0400 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2020-07-08 11:15:08 -0400 |
commit | cfef7fa605c6215157c2d2485305f23280b4f6fe (patch) | |
tree | a337520766f009c5716110631eec3d12ef059325 /st.c | |
parent | 3f51ba298c70c346ed1f8257c5e180a074d6ff9b (diff) | |
parent | 6bf7545fc98cd0d42eb727d596215daac809c478 (diff) |
Merge branch 'master' of https://github.com/mackarelfish/st into mackarelfish-master
Diffstat (limited to 'st.c')
-rw-r--r-- | st.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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(); |