X-Git-Url: http://git.madism.org/?p=apps%2Fmadmutt.git;a=blobdiff_plain;f=compose.c;h=42fef171958cbd01cf3b62a06361777a5a2bb4e9;hp=643268e0f5529076b0af9e1e2bb359b837c1d312;hb=15aeb79a9b30f4037ec0898452090e90da28f7f1;hpb=8ab1ab66eb1c4b95f9b2a5ed9c2b2cf1dfa74544 diff --git a/compose.c b/compose.c index 643268e..42fef17 100644 --- a/compose.c +++ b/compose.c @@ -442,8 +442,6 @@ int mutt_compose_menu (HEADER * msg, /* structure for new message */ menu->tag = mutt_tag_attach; menu->data = idx; - if (option (OPTMBOXPANE)) - buffy_check (0); while (loop) { #ifdef USE_NNTP unset_option (OPTNEWS); /* for any case */ @@ -1170,9 +1168,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;