From: Michael Elkins Date: Fri, 4 Jan 2013 00:12:28 +0000 (-0800) Subject: Fix regression introduced by [10cc06eff52b] where the CLEARLINE() removal was not... X-Git-Tag: neomutt-20160307~186 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2a97685ee143d44c2bf7ba5befa8cf3ee5554e7d;p=neomutt Fix regression introduced by [10cc06eff52b] where the CLEARLINE() removal was not replaced by a move() to position the cursor at the correct location to draw the status bar. closes #3619 --- diff --git a/pager.c b/pager.c index 9635cc4ae..7b03e902b 100644 --- a/pager.c +++ b/pager.c @@ -1794,6 +1794,7 @@ mutt_pager (const char *banner, const char *fname, int flags, pager_t *extra) strfcpy(pager_progress_str, (topline == 0) ? "all" : "end", sizeof(pager_progress_str)); /* print out the pager status bar */ + move (statusoffset, 0); SETCOLOR (MT_COLOR_STATUS); if (IsHeader (extra) || IsMsgAttach (extra))