aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrederic Culot <calcurse@culot.org>2006-09-09 20:06:47 +0000
committerFrederic Culot <calcurse@culot.org>2006-09-09 20:06:47 +0000
commit9a5dc44fff7ca75b4dc3dbf933a0902f971cbd4b (patch)
tree3440f39084d3de0fd7739496612999274fa61956
parent59f5c0dc80caa0868fc4213f60a2f5f4c150f527 (diff)
downloadcalcurse-9a5dc44fff7ca75b4dc3dbf933a0902f971cbd4b.tar.gz
calcurse-9a5dc44fff7ca75b4dc3dbf933a0902f971cbd4b.zip
help window size modified to take notification bar into account
-rwxr-xr-xsrc/help.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/help.c b/src/help.c
index 484ebfc..2d0f91a 100755
--- a/src/help.c
+++ b/src/help.c
@@ -1,4 +1,4 @@
-/* $calcurse: help.c,v 1.5 2006/09/06 17:10:44 culot Exp $ */
+/* $calcurse: help.c,v 1.6 2006/09/09 20:06:47 culot Exp $ */
/*
* Calcurse - text-based organizer
@@ -73,7 +73,7 @@ void help_screen(int which_pan, int colr)
WINDOW *help_pad = NULL;
char label[80];
int ch = '?';
- int help_row = row - 2; //size of the help window
+ int help_row = row - 3; //size of the help window
int help_col = col;
int title_lines = 3;
int pad_offset = 4;