diff options
author | Jonathan McCrohan <jmccrohan@gmail.com> | 2012-05-06 21:13:09 +0100 |
---|---|---|
committer | Jonathan McCrohan <jmccrohan@gmail.com> | 2012-05-06 21:13:09 +0100 |
commit | d0faeb165ac7cd3ce0d1f22f15b0e90072bed969 (patch) | |
tree | a723545835f20a19a9620407b10259c10e8d3246 /ui.c | |
parent | c20edfe61df77fa1b31572b26473fd12029a35b7 (diff) | |
parent | 3645c236e9720deb696e7aebc33cd9a6d8cbbdc6 (diff) | |
download | wavemon-d0faeb165ac7cd3ce0d1f22f15b0e90072bed969.tar.gz |
Merge tag 'upstream/0.7.5'
Upstream version 0.7.5
Diffstat (limited to '')
-rw-r--r-- | ui.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -70,11 +70,11 @@ void waddstr_center(WINDOW *win, int y, const char *s) mvwaddstr(win, y, (WAV_WIDTH - strlen(s)) / 2, s); } -void waddstr_b(WINDOW *win, const char *s) +void wadd_attr_str(WINDOW *win, const int attrs, const char *s) { - wattron(win, A_BOLD); + wattron(win, attrs); waddstr(win, s); - wattroff(win, A_BOLD); + wattroff(win, attrs); } /* Enforce that @str is at most @len characters (excluding the terminal '\0') */ |