X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=lib-ui%2Flayout.c;h=eb5c2f0dba7964bea4409ba39417fe9f24c44e2b;hp=bae1d2adc643ec19cffcb5692e6bf574b01d5c45;hb=85707d7504ab7baf1b07e30b1bcab517ef115976;hpb=8ab1ab66eb1c4b95f9b2a5ed9c2b2cf1dfa74544 diff --git a/lib-ui/layout.c b/lib-ui/layout.c index bae1d2a..eb5c2f0 100644 --- a/lib-ui/layout.c +++ b/lib-ui/layout.c @@ -59,7 +59,7 @@ void mutt_refresh(void) void mutt_endwin(const char *msg) { if (!option(OPTNOCURSES)) { - CLEARLINE(main_w, LINES - 1); + CLEARLINE(stdscr, LINES - 1); if (sidebar_w) { delwin(sidebar_w); @@ -72,7 +72,6 @@ void mutt_endwin(const char *msg) } #endif - wattrset(stdscr, A_NORMAL); mutt_refresh(); endwin(); } @@ -85,9 +84,9 @@ void mutt_endwin(const char *msg) void ui_layout_init(void) { + erase(); main_w = newwin(LINES - 1, COLS, 0, 0); SETCOLOR(main_w, MT_COLOR_NORMAL); - wclear(main_w); mutt_error = mutt_curses_error; mutt_message = mutt_curses_message; }