diff options
| author | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2022-12-31 16:35:12 -0500 |
|---|---|---|
| committer | Douglas B. Rumbaugh <doug@douglasrumbaugh.com> | 2022-12-31 16:35:12 -0500 |
| commit | 8029cd7933b4904c4bb0f13012515e9c9c2ab435 (patch) | |
| tree | fb832cae42ef2b1e347f110bef176e413011216c /st.c | |
| parent | 7c6ef5232de8d31a10e593882c29189c05296541 (diff) | |
| download | st-8029cd7933b4904c4bb0f13012515e9c9c2ab435.tar.gz | |
Added ligatures patch
Diffstat (limited to 'st.c')
| -rw-r--r-- | st.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -2643,7 +2643,8 @@ draw(void) drawregion(0, 0, term.col, term.row); 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(); |