diff options
author | Frederic Culot <calcurse@culot.org> | 2006-09-15 15:43:54 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2006-09-15 15:43:54 +0000 |
commit | 1e03acc3fc4ae740e56066e5f3ac340d8cac24bc (patch) | |
tree | 2034f7d6e141058d9b7c9f9ec275e7ebf5e4b9b3 | |
parent | cb4a5d511b031425c75a066d9b07c0158ca3820d (diff) | |
download | calcurse-1e03acc3fc4ae740e56066e5f3ac340d8cac24bc.tar.gz calcurse-1e03acc3fc4ae740e56066e5f3ac340d8cac24bc.zip |
config_bar() updated to add a notify menu
-rwxr-xr-x | src/custom.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/custom.c b/src/custom.c index bd19429..f8c0828 100755 --- a/src/custom.c +++ b/src/custom.c @@ -1,4 +1,4 @@ -/* $calcurse: custom.c,v 1.2 2006/09/03 17:53:26 culot Exp $ */ +/* $calcurse: custom.c,v 1.3 2006/09/15 15:43:54 culot Exp $ */ /* * Calcurse - text-based organizer @@ -91,12 +91,14 @@ void config_bar() mvwprintw(swin, 1, 2, "G"); mvwprintw(swin, 0, 2 + spc, "L"); mvwprintw(swin, 1, 2 + spc, "C"); + mvwprintw(swin, 0, 2 + 2*spc, "N"); custom_remove_attr(swin, ATTR_HIGHEST); mvwprintw(swin, 0, 2 + smlspc, _("Exit")); mvwprintw(swin, 1, 2 + smlspc, _("General")); mvwprintw(swin, 0, 2 + spc + smlspc, _("Layout")); mvwprintw(swin, 1, 2 + spc + smlspc, _("Color")); + mvwprintw(swin, 0, 2 + 2*spc + smlspc, _("Notify")); wnoutrefresh(swin); wmove(swin, 0, 0); |