mirror of
https://github.com/Tha14/toxic.git
synced 2024-11-13 02:53:01 +01:00
refresh windows after resize
This commit is contained in:
parent
202d162d2e
commit
0ac97aa794
9
main.c
9
main.c
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user