X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=compose.c;h=cb245dc1aea7b0768da899520fcf7e1c34b9c572;hp=d36008bbb38cfcb9b28ec83c8278ee089ad4f496;hb=1c62190597f45fd606cf680df3f6a099b9f7ec18;hpb=690944eebbe058753a56dd10a455943507dc44e7 diff --git a/compose.c b/compose.c index d36008b..cb245dc 100644 --- a/compose.c +++ b/compose.c @@ -846,7 +846,7 @@ int mutt_compose_menu (HEADER * msg, /* structure for new message */ int itype; FILE *fp; - CLEARLINE(main_w, LINES - 1); + CLEARLINE(stdscr, LINES - 1); fname[0] = 0; if (mutt_get_field (_("New file: "), fname, sizeof (fname), M_FILE) != 0 || !fname[0]) @@ -1048,8 +1048,7 @@ int mutt_compose_menu (HEADER * msg, /* structure for new message */ compose_status_line (buf, sizeof (buf), menu, NONULL (ComposeFormat)); CLEARLINE(main_w, 0); SETCOLOR(main_w, MT_COLOR_STATUS); - wmove (main_w, 0, 0); - wprintw (main_w, "%-*.*s", getmaxx(main_w), getmaxx(main_w), buf); + mvwprintw (main_w, 0, 0, "%-*.*s", getmaxx(main_w), getmaxx(main_w), buf); SETCOLOR(main_w, MT_COLOR_NORMAL); menu->redraw &= ~REDRAW_STATUS; }