From 92d2b739741e8da55d8d9b42d7eb98b835590f29 Mon Sep 17 00:00:00 2001 From: Andrzej Rybczak Date: Sun, 25 Dec 2016 00:40:35 +0100 Subject: [PATCH] Reposition player_state_color in man page and settings --- doc/ncmpcpp.1 | 6 +++--- src/settings.cpp | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/ncmpcpp.1 b/doc/ncmpcpp.1 index 6525e195..43db0d8e 100644 --- a/doc/ncmpcpp.1 +++ b/doc/ncmpcpp.1 @@ -378,15 +378,15 @@ Color of progressbar. .B progressbar_elapsed_color = COLOR Color of part of progressbar that represents elapsed time. .TP -.B player_state_color = COLOR -Color of player state shown in statusbar. -.TP .B statusbar_color = COLOR Color of statusbar. .TP .B statusbar_time_color = COLOR Color of current track time shown in statusbar. .TP +.B player_state_color = COLOR +Color of player state shown in statusbar. +.TP .B alternative_ui_separator_color = COLOR Color of separators used in alternative user interface. .TP diff --git a/src/settings.cpp b/src/settings.cpp index ea81729d..89dc9e29 100644 --- a/src/settings.cpp +++ b/src/settings.cpp @@ -507,9 +507,9 @@ bool Configuration::read(const std::vector &config_paths, bool igno p.add("main_window_highlight_color", &main_highlight_color, "yellow"); p.add("progressbar_color", &progressbar_color, "black:b"); p.add("progressbar_elapsed_color", &progressbar_elapsed_color, "green:b"); - p.add("player_state_color", &player_state_color, "default:b"); p.add("statusbar_color", &statusbar_color, "default"); p.add("statusbar_time_color", &statusbar_time_color, "default:b"); + p.add("player_state_color", &player_state_color, "default:b"); p.add("alternative_ui_separator_color", &alternative_ui_separator_color, "black:b"); p.add("active_column_color", &active_column_color, "red"); p.add("window_border_color", &window_border, "green", verbose_lexical_cast);