Merge pull request #1671 from paulfertser/fix-resize-race

Fix race condition on resize
This commit is contained in:
Michael Vetter
2022-04-01 12:14:44 +02:00
committed by GitHub

View File

@@ -144,10 +144,8 @@ ui_update(void)
doupdate();
if (perform_resize) {
signal(SIGWINCH, SIG_IGN);
ui_resize();
perform_resize = FALSE;
signal(SIGWINCH, ui_sigwinch_handler);
ui_resize();
}
}