From 2306e0ecba98d7b0d6b006a8c65bd50c0346ee78 Mon Sep 17 00:00:00 2001 From: Michael Elkins Date: Wed, 23 Jan 2013 19:52:28 +0000 Subject: [PATCH] do not explicitly reset the terminal attributes and move the cursor in mutt_endwin(). endwin() itself should handle this. closes #3627 --- curs_lib.c | 5 ----- 1 file changed, 5 deletions(-) diff --git a/curs_lib.c b/curs_lib.c index 8b11bba28..c7a7676e6 100644 --- a/curs_lib.c +++ b/curs_lib.c @@ -474,12 +474,7 @@ void mutt_endwin (const char *msg) int e = errno; if (!option (OPTNOCURSES)) - { - ATTRSET(A_NORMAL); - CLEARLINE (LINES - 1); - mutt_refresh (); endwin (); - } if (msg && *msg) { -- 2.40.0