aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjakob.stendahl <jakob.stendahl@infomedia.dk>2024-07-13 15:06:40 +0200
committerjakob.stendahl <jakob.stendahl@infomedia.dk>2024-07-13 15:06:40 +0200
commit62e59598789fd2afe4175172e549c5686d4cddc9 (patch)
treeaf3f2ac439326a36d0b9cb3d4996fadd0eb4844d
parent7c52e13134c29dbde4f7678be1be431b62afe91f (diff)
downloadsimple-notification-daemon-62e59598789fd2afe4175172e549c5686d4cddc9.tar.gz
simple-notification-daemon-62e59598789fd2afe4175172e549c5686d4cddc9.zip
Make all options on bottom menu same width
-rw-r--r--snotifc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/snotifc.c b/snotifc.c
index 265e2ed..8ed6ebd 100644
--- a/snotifc.c
+++ b/snotifc.c
@@ -306,22 +306,22 @@ void curses_display_menu(int c_id) {
printw(" F7");
attron(COLOR_PAIR(2));
- printw("Toogle read");
+ printw("Toogle read ");
attroff(COLOR_PAIR(2));
printw(" F8");
attron(COLOR_PAIR(2));
- printw("Mark all read");
+ printw("Mark all read ");
attroff(COLOR_PAIR(2));
printw(" F9");
attron(COLOR_PAIR(2));
- printw("Clear");
+ printw("Clear ");
attroff(COLOR_PAIR(2));
printw("F10");
attron(COLOR_PAIR(2));
- printw("Quit");
+ printw("Quit ");
attroff(COLOR_PAIR(2));
chgat(-1, A_NORMAL, 2, NULL);