aboutsummaryrefslogtreecommitdiffstats
path: root/src/help.c
diff options
context:
space:
mode:
authorFrederic Culot <calcurse@culot.org>2010-03-21 10:17:03 +0000
committerFrederic Culot <calcurse@culot.org>2010-03-21 10:17:03 +0000
commit6892b596222bdc5b2c0757a8f6cc79bcf2691d1a (patch)
tree6e2e78054a9aafaa72e82fd8117604f646877b0f /src/help.c
parentcc77e839d86fda9871f5fde89350d51465ec208b (diff)
downloadcalcurse-6892b596222bdc5b2c0757a8f6cc79bcf2691d1a.tar.gz
calcurse-6892b596222bdc5b2c0757a8f6cc79bcf2691d1a.zip
Avoid concurrent screen refreshes.
Diffstat (limited to 'src/help.c')
-rwxr-xr-xsrc/help.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/help.c b/src/help.c
index e4f7d48..f3b2209 100755
--- a/src/help.c
+++ b/src/help.c
@@ -1,4 +1,4 @@
-/* $calcurse: help.c,v 1.43 2010/03/20 10:54:45 culot Exp $ */
+/* $calcurse: help.c,v 1.44 2010/03/21 10:17:03 culot Exp $ */
/*
* Calcurse - text-based organizer
@@ -185,7 +185,7 @@ static void
help_wins_reset (struct scrollwin *hwin)
{
endwin ();
- refresh ();
+ wins_refresh ();
curs_set (0);
delwin (win[STA].p);
help_wins_reinit (hwin);