about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/teliva.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/teliva.c b/src/teliva.c
index 9a6ec3e..c195211 100644
--- a/src/teliva.c
+++ b/src/teliva.c
@@ -32,7 +32,8 @@ void draw_menu_item(const char* key, const char* name) {
 }
 
 static void draw_menu(lua_State* L) {
-  attron(A_BOLD|A_REVERSE|COLOR_PAIR(COLOR_PAIR_MENU));
+  attron(A_BOLD|A_REVERSE);
+  color_set(COLOR_PAIR_MENU, NULL);
   for (int x = 0; x < COLS; ++x)
     mvaddch(LINES-1, x, ' ');
   menu_column = 2;