Merge branch 'master' of https://github.com/mackarelfish/st into mackarelfish-master

This commit is contained in:
Luke Smith
2020-07-08 11:15:08 -04:00
8 changed files with 175 additions and 12 deletions

3
st.c
View File

@ -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();