1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-27 01:25:34 +00:00

[fg] Resize terminal after CTRL-Z and fg. Refs #287

This commit is contained in:
Witold Filipczyk 2024-03-06 11:06:39 +01:00
parent f807c611fa
commit 0acfd90225

View File

@ -106,6 +106,8 @@ poll_fg(void *t_)
r = unblock_itrm();
if (r == -1) {
install_timer(&fg_poll_timer, FG_POLL_TIME, poll_fg, t);
} else {
resize_terminal();
}
#if 0
if (r == -2) {
@ -123,7 +125,9 @@ poll_fg(void *t_)
static void
sig_cont(struct terminal *term)
{
if (!unblock_itrm()) resize_terminal();
if (!unblock_itrm()) {
resize_terminal();
}
}
#endif