]> git.wh0rd.org Git - nano.git/commitdiff
in statusq(), call wrefresh(bottomwin) after getting an answer and
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 18 Jun 2005 04:32:26 +0000 (04:32 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Sat, 18 Jun 2005 04:32:26 +0000 (04:32 +0000)
blanking out the statusbar, to make sure that the blanking is done; this
fixes a problem where the statusbar is not properly blanked after using
the "Go To Line" prompt with the NO_HELP flag set

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2720 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/winio.c

index 751ed9c484eff4e4766fac1d0e07cf5a8d584016..2edc3078596d0d2b0d6b973bb14fb9a9e7626732 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -298,6 +298,11 @@ CVS code -
          consistency. (DLR)
        - Rename variables def and ret to curranswer and retval to avoid
          confusion. (DLR)
+       - Call wrefresh(bottomwin) after getting an answer and blanking
+         out the statusbar, to make sure that the blanking is done.
+         This fixes a problem where the statusbar is not properly
+         blanked after using the "Go To Line" prompt with the NO_HELP
+         flag set. (DLR)
   do_help()
        - Don't treat NANO_CANCEL_KEY as NANO_EXIT_KEY anymore, for
          consistency. (DLR)
index 47e4e79919e3b81fa478c8d07cb6c1e482b82cf0..c2e3f2225373dcd1272e085e0b87491a16411d4a 100644 (file)
@@ -2659,6 +2659,7 @@ int statusq(bool allow_tabs, const shortcut *s, const char *curranswer,
     }
 
     blank_statusbar();
+    wrefresh(bottomwin);
 
 #ifdef DEBUG
     fprintf(stderr, "answer = \"%s\"\n", answer);