mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
render: resize: do delayed reflow immediately when failing to arm tiocswinsz timer
This commit is contained in:
parent
c5c97c2fd4
commit
c550d67cd8
1 changed files with 3 additions and 1 deletions
4
render.c
4
render.c
|
|
@ -3776,8 +3776,10 @@ send_dimensions_to_client(struct terminal *term)
|
|||
successfully_scheduled = true;
|
||||
}
|
||||
|
||||
if (!successfully_scheduled)
|
||||
if (!successfully_scheduled) {
|
||||
tiocswinsz(term);
|
||||
delayed_reflow_of_normal_grid(term);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue