diff options
Diffstat (limited to 'src/screen.cpp')
-rw-r--r-- | src/screen.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/screen.cpp b/src/screen.cpp index 24869e6a..0dadd4a1 100644 --- a/src/screen.cpp +++ b/src/screen.cpp @@ -32,9 +32,9 @@ namespace {// void drawScreenSeparator(int x) { - attron(COLOR_PAIR(Config.main_color)); + attron(COLOR_PAIR(int(Config.main_color))); mvvline(Global::MainStartY, x, 0, Global::MainHeight); - attroff(COLOR_PAIR(Config.main_color)); + attroff(COLOR_PAIR(int(Config.main_color))); refresh(); } |