mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
render: delayed reflow: not enough to damage current view; need to refresh too
This commit is contained in:
parent
f70c34c5a8
commit
d4b0b0887e
1 changed files with 3 additions and 1 deletions
4
render.c
4
render.c
|
|
@ -3698,8 +3698,10 @@ delayed_reflow_of_normal_grid(struct terminal *term)
|
|||
term->render.last_buf = NULL;
|
||||
term->render.last_cursor.row = NULL;
|
||||
|
||||
if (term->grid == &term->normal)
|
||||
if (term->grid == &term->normal) {
|
||||
term_damage_view(term);
|
||||
render_refresh(term);
|
||||
}
|
||||
|
||||
term_ptmx_resume(term);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue