resize: cursor reset was off-by-one when cursor was outside new size

This commit is contained in:
Daniel Eklöf 2019-07-04 19:56:50 +02:00
parent 1c737fa7bd
commit 4a35aa9724
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

4
main.c
View file

@ -568,8 +568,8 @@ resize(struct context *c, int width, int height)
term_cursor_to(
&c->term,
min(c->term.cursor.row, c->term.rows),
min(c->term.cursor.col, c->term.cols));
min(c->term.cursor.row, c->term.rows - 1),
min(c->term.cursor.col, c->term.cols - 1));
term_damage_all(&c->term);