ensure initscr(3x) & use newwin(3x) not stdscr(3x) for root node

This commit is contained in:
Emile Clark-Boman 2025-09-11 19:24:48 +10:00
parent 8c4f288a97
commit f73dbd7d8a
2 changed files with 13 additions and 12 deletions

View file

@ -18,8 +18,7 @@ enum crs_termmode {
int termmode(const enum crs_termmode mode);
void init_ncurses(void);
WINDOW *init_window(const int x, const int y, const int width,
const int height);
WINDOW *new_window(const int x, const int y, const int width, const int height);
WINDOW *root_window(void);
int resizemv_window(const int x, const int y, const int width, const int height,