Reset sigwinch after handler

This commit is contained in:
Kevin Lange 2014-05-01 11:14:07 -07:00
parent 5125a24bfe
commit 1e50a21706
1 changed files with 2 additions and 0 deletions

View File

@ -225,6 +225,8 @@ void SIGWINCH_handler(int sig) {
min_row = (FRAME_HEIGHT - (terminal_height-1)) / 2;
max_row = (FRAME_HEIGHT + (terminal_height-1)) / 2;
}
signal(SIGWINCH, SIGWINCH_handler);
}
/*