Reposition player_state_color in man page and settings

master
Andrzej Rybczak 9 years ago
parent 51d7c9d7d5
commit 92d2b73974
  1. 6
      doc/ncmpcpp.1
  2. 2
      src/settings.cpp

@ -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

@ -507,9 +507,9 @@ bool Configuration::read(const std::vector<std::string> &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<NC::Color>);

Loading…
Cancel
Save