render: resize: do delayed reflow immediately when failing to arm tiocswinsz timer

This commit is contained in:
Daniel Eklöf 2022-10-09 16:16:50 +02:00
parent c5c97c2fd4
commit c550d67cd8
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

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