aboutsummaryrefslogtreecommitdiffstats
path: root/src/utils.c
diff options
context:
space:
mode:
authorFrederic Culot <calcurse@culot.org>2006-08-31 18:50:17 +0000
committerFrederic Culot <calcurse@culot.org>2006-08-31 18:50:17 +0000
commitc4b802b744effdae7cc080c86f942334897e8408 (patch)
tree0dfd41847ad615704cf5c3b4edf48e89d54fa32b /src/utils.c
parent3d74219beb4f2e9f4ec0a6d792c52bcfa04d7e8b (diff)
downloadcalcurse-c4b802b744effdae7cc080c86f942334897e8408.tar.gz
calcurse-c4b802b744effdae7cc080c86f942334897e8408.zip
'+/-' menu added to status bar while inside TODO panel
Diffstat (limited to 'src/utils.c')
-rwxr-xr-xsrc/utils.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/utils.c b/src/utils.c
index b2813fb..e3ed984 100755
--- a/src/utils.c
+++ b/src/utils.c
@@ -1,4 +1,4 @@
-/* $calcurse: utils.c,v 1.3 2006/08/23 19:44:25 culot Exp $ */
+/* $calcurse: utils.c,v 1.4 2006/08/31 18:50:17 culot Exp $ */
/*
* Calcurse - text-based organizer
@@ -436,9 +436,10 @@ void status_bar(int which_pan, int colr, int nc_bar, int nl_bar)
mvwprintw(swin, 1, 2 * len_oth_itm, "Tab");
mvwprintw(swin, 0, 3 * len_oth_itm, " A");
mvwprintw(swin, 1, 3 * len_oth_itm, " D");
- mvwprintw(swin, 0, 4 * len_oth_itm, " G");
+ mvwprintw(swin, 0, 4 * len_oth_itm, "+/-");
mvwprintw(swin, 1, 4 * len_oth_itm, " V");
- mvwprintw(swin, 0, 5 * len_oth_itm, " C");
+ mvwprintw(swin, 0, 5 * len_oth_itm, " G");
+ mvwprintw(swin, 1, 5 * len_oth_itm, " C");
custom_remove_attr(swin, ATTR_HIGHEST);
wnoutrefresh(swin);
@@ -456,10 +457,12 @@ void status_bar(int which_pan, int colr, int nc_bar, int nl_bar)
mvwprintw(swin, 1, 3 * len_oth_itm + len_let + spc_lad,
_("Del Item"));
mvwprintw(swin, 0, 4 * len_oth_itm + len_let + spc_lad,
- _("GoTo"));
+ _("Priority"));
mvwprintw(swin, 1, 4 * len_oth_itm + len_let + spc_lad,
_( "View"));
mvwprintw(swin, 0, 5 * len_oth_itm + len_let + spc_lad,
+ _("GoTo"));
+ mvwprintw(swin, 1, 5 * len_oth_itm + len_let + spc_lad,
_("Config"));
break;
}