new feature: support for stereo visualization

This commit is contained in:
Andrzej Rybczak
2011-11-09 17:46:20 +01:00
parent 78cd46b756
commit 0e6306849c
6 changed files with 68 additions and 41 deletions

View File

@@ -426,6 +426,7 @@ void NcmpcppConfig::SetDefaults()
mouse_list_scroll_whole_page = true;
new_design = false;
visualizer_use_wave = true;
visualizer_in_stereo = false;
browser_sort_by_mtime = false;
tag_editor_extended_numeration = false;
media_library_display_date = true;
@@ -1056,6 +1057,10 @@ void NcmpcppConfig::Read()
{
visualizer_use_wave = v == "wave";
}
else if (cl.find("visualizer_in_stereo") != std::string::npos)
{
visualizer_in_stereo = v == "yes";
}
else if (cl.find("mouse_support") != std::string::npos)
{
mouse_support = v == "yes";