diff options
author | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2024-07-13 15:06:40 +0200 |
---|---|---|
committer | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2024-07-13 15:06:40 +0200 |
commit | 62e59598789fd2afe4175172e549c5686d4cddc9 (patch) | |
tree | af3f2ac439326a36d0b9cb3d4996fadd0eb4844d | |
parent | 7c52e13134c29dbde4f7678be1be431b62afe91f (diff) | |
download | simple-notification-daemon-62e59598789fd2afe4175172e549c5686d4cddc9.tar.gz simple-notification-daemon-62e59598789fd2afe4175172e549c5686d4cddc9.zip |
Make all options on bottom menu same width
-rw-r--r-- | snotifc.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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); |