Add option to only act on songs that pass current string or genre filter.

BUG: 473
This commit is contained in:
craig.p.drummond
2014-04-30 18:48:00 +00:00
committed by craig.p.drummond
parent 6f79dee43d
commit a1337b933c
13 changed files with 193 additions and 112 deletions

View File

@@ -244,6 +244,7 @@ void InterfaceSettings::load()
#endif
groupSingle->setChecked(Settings::self()->groupSingle());
useComposer->setChecked(Settings::self()->useComposer());
filteredOnly->setChecked(Settings::self()->filteredOnly());
#ifdef ENABLE_DEVICES_SUPPORT
showDeleteAction->setChecked(Settings::self()->showDeleteAction());
selectEntry(devicesView, Settings::self()->devicesView());
@@ -325,6 +326,7 @@ void InterfaceSettings::save()
#endif
Settings::self()->saveGroupSingle(groupSingle->isChecked());
Settings::self()->saveUseComposer(useComposer->isChecked());
Settings::self()->saveFilteredOnly(filteredOnly->isChecked());
#ifdef ENABLE_DEVICES_SUPPORT
Settings::self()->saveShowDeleteAction(showDeleteAction->isChecked());
Settings::self()->saveDevicesView(getValue(devicesView));