1
0
mirror of https://github.com/Tha14/toxic.git synced 2024-07-03 15:57:46 +02:00

refresh windows after resize

This commit is contained in:
Aaron Lipinski 2013-08-11 12:59:16 +12:00
parent 202d162d2e
commit 0ac97aa794

9
main.c
View File

@ -8,6 +8,7 @@
#include <stdlib.h>
#include <stdbool.h>
#include <stdint.h>
#include <signal.h>
#ifdef _win32
#include <direct.h>
@ -25,9 +26,17 @@
#include "friendlist.h"
void on_window_resize(int sig)
{
endwin();
refresh();
clear();
}
static void init_term()
{
/* Setup terminal */
signal(SIGWINCH, on_window_resize);
initscr();
cbreak();
keypad(stdscr, 1);