From 2a97685ee143d44c2bf7ba5befa8cf3ee5554e7d Mon Sep 17 00:00:00 2001 From: Michael Elkins Date: Thu, 3 Jan 2013 16:12:28 -0800 Subject: [PATCH] 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 --- pager.c | 1 + 1 file changed, 1 insertion(+) 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)) -- 2.49.0