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: mutt-1-5-22-rel~38 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3002c9372ad7ef479eacb22ca15ecb55c1e98af9;p=mutt 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 9635cc4a..7b03e902 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))