Remove lots of useless stupid, and code greedy options.
[apps/madmutt.git] / compose.c
index 643268e..7c7517a 100644 (file)
--- 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;