about summary refs log tree commit diff stats
path: root/src/ui/core.c
diff options
context:
space:
mode:
authorMichael Vetter <jubalh@iodoru.org>2022-04-28 19:33:23 +0200
committerGitHub <noreply@github.com>2022-04-28 19:33:23 +0200
commit27f25172e9dd70c0df518530e1b5e82391b1b7d7 (patch)
treee50dd97f419c2a5ad3e5efd3ff5c4cab70e849f7 /src/ui/core.c
parent0dd0193ebaf1e016a2cfbaec9acdcc93c62e692a (diff)
parent066df7f741848a2c594a5cbb05cef5af9075d5a1 (diff)
downloadprofani-tty-27f25172e9dd70c0df518530e1b5e82391b1b7d7.tar.gz
Merge branch 'master' into add_stamp_settings
Diffstat (limited to 'src/ui/core.c')
-rw-r--r--src/ui/core.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/ui/core.c b/src/ui/core.c
index 3b10888b..5ce42e50 100644
--- a/src/ui/core.c
+++ b/src/ui/core.c
@@ -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();
     }
 }