summaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
authorSaumit Dinesan <justsaumit@protonmail.com>2022-09-04 23:45:50 +0530
committerSaumit Dinesan <justsaumit@protonmail.com>2022-09-04 23:45:50 +0530
commit8b775dba2a886c5b2d0fadddafdf58c7c69d9cfb (patch)
treedc3dd17d7014084a16d844e9ca853990ca1b7f93 /st.c
parentdf482c4158e3579c8ab41d2851ea4cbb9b0057c7 (diff)
replacing ligatures+scrollback patch w +boxdraw and applying said patch(previous one gave errors even on manual patching w 0 errors)
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 4f015ed..7d125fd 100644
--- a/st.c
+++ b/st.c
@@ -2714,7 +2714,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();