summaryrefslogtreecommitdiff
path: root/vchat-ui.c
diff options
context:
space:
mode:
authorerdgeist <>2003-11-19 16:06:42 +0000
committererdgeist <>2003-11-19 16:06:42 +0000
commit68bed72f530d2cafb7c90cfd17d6c8b5d132af28 (patch)
tree795a9b1cbfa90a78fe26897789be165401eca65b /vchat-ui.c
parent3c75b863a628adc020062e773d7edf5bac0649fb (diff)
Resize triggered on SIGCONT to keep curses from fucking up
Diffstat (limited to 'vchat-ui.c')
-rwxr-xr-xvchat-ui.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/vchat-ui.c b/vchat-ui.c
index ef6561e..b37f532 100755
--- a/vchat-ui.c
+++ b/vchat-ui.c
@@ -1010,7 +1010,8 @@ initui (void)
1010 1010
1011 /* install signalhandler */ 1011 /* install signalhandler */
1012 1012
1013 signal (SIGWINCH, resize); 1013 signal(SIGWINCH, resize);
1014 signal(SIGCONT, resize);
1014 1015
1015 /* set options */ 1016 /* set options */
1016 keypad (stdscr, TRUE); 1017 keypad (stdscr, TRUE);