diff options
author | ZachIR <zachir@librem.one> | 2025-07-08 21:08:52 -0500 |
---|---|---|
committer | ZachIR <zachir@librem.one> | 2025-07-08 21:08:52 -0500 |
commit | 1f5344705216be2234d29d9b0ea675577988caa4 (patch) | |
tree | 196ee0a839d0b807479b8b4b549f16ccfab260ef /st.c | |
parent | af79d1853cf8d501bbdf14b6d4b2df81bdaf1526 (diff) |
Apply ligatures patch
Diffstat (limited to 'st.c')
-rw-r--r-- | st.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2730,7 +2730,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(); |