summaryrefslogtreecommitdiff
path: root/src/status.cpp
diff options
context:
space:
mode:
authorAndrzej Rybczak <electricityispower@gmail.com>2016-01-16 10:39:20 +0100
committerAndrzej Rybczak <electricityispower@gmail.com>2016-01-16 10:39:20 +0100
commitf56c825b36d81ca3d49c140f90f7c2ac8f9ce94e (patch)
treef7bb2b1e62b47b2214aeee1792e877acb3b7b687 /src/status.cpp
parentcb937438270061a937b130eb43fed56a4bbaa66e (diff)
statusbar: always respect alternative ui separator color0.7.2
Diffstat (limited to 'src/status.cpp')
-rw-r--r--src/status.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/status.cpp b/src/status.cpp
index d242340c..54c68efa 100644
--- a/src/status.cpp
+++ b/src/status.cpp
@@ -726,7 +726,7 @@ void Status::Changes::flags()
*wHeader << NC::XY(COLS-switch_state.length(), 1) << NC::Format::Bold << Config.state_flags_color << switch_state << NC::Color::End << NC::Format::NoBold;
if (!Config.header_visibility) // in this case also draw separator
{
- *wHeader << NC::Format::Bold << NC::Color::Black;
+ *wHeader << NC::Format::Bold << Config.alternative_ui_separator_color;
mvwhline(wHeader->raw(), 2, 0, 0, COLS);
*wHeader << NC::Color::End << NC::Format::NoBold;
}