X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=compose.c;h=7c7517ab3998b92d8eed9a8763cc9df6d8efbe7c;hp=643268e0f5529076b0af9e1e2bb359b837c1d312;hb=7dcd7ee09b8760133ac8ec00562e4d60b2f0aebd;hpb=f5276054ef65648b1d1ab00664c0a3ea6879cf39 diff --git a/compose.c b/compose.c index 643268e..7c7517a 100644 --- a/compose.c +++ b/compose.c @@ -1170,9 +1170,9 @@ int mutt_compose_menu (HEADER * msg, /* structure for new message */ /* Draw formated compose status line */ if (menu->redraw & REDRAW_STATUS) { compose_status_line (buf, sizeof (buf), menu, NONULL (ComposeFormat)); - CLEARLINE(main_w, option (OPTSTATUSONTOP) ? 0 : LINES - 2); + CLEARLINE(main_w, 0); SETCOLOR(main_w, MT_COLOR_STATUS); - wmove (main_w, option (OPTSTATUSONTOP) ? 0 : LINES - 2, 0); + wmove (main_w, 0, 0); wprintw (main_w, "%-*.*s", getmaxx(main_w), getmaxx(main_w), buf); SETCOLOR(main_w, MT_COLOR_NORMAL); menu->redraw &= ~REDRAW_STATUS;