|
|
|
|
@ -180,6 +180,7 @@ void Configuration::SetDefaults() |
|
|
|
|
selected_item_suffix << NC::clEnd; |
|
|
|
|
now_playing_prefix << NC::fmtBold; |
|
|
|
|
now_playing_suffix << NC::fmtBoldEnd; |
|
|
|
|
modified_item_prefix << NC::clRed << "> " << NC::clEnd; |
|
|
|
|
color1 = NC::clWhite; |
|
|
|
|
color2 = NC::clGreen; |
|
|
|
|
empty_tags_color = NC::clCyan; |
|
|
|
|
@ -575,6 +576,14 @@ void Configuration::Read() |
|
|
|
|
now_playing_suffix_length = wideLength(now_playing_suffix.str()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
else if (name == "modified_item_prefix") |
|
|
|
|
{ |
|
|
|
|
if (!v.empty()) |
|
|
|
|
{ |
|
|
|
|
modified_item_prefix.clear(); |
|
|
|
|
String2Buffer(v, modified_item_prefix); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
else if (name == "color1") |
|
|
|
|
{ |
|
|
|
|
if (!v.empty()) |
|
|
|
|
|