added subfilter support

This commit is contained in:
lostjared
2018-06-29 08:45:25 -07:00
parent 8b3d298f0f
commit e38d3f0be2
4 changed files with 30 additions and 1 deletions

View File

@@ -128,6 +128,12 @@ void Playback::setIndexChanged(std::string value) {
alpha = 1.0;
}
void Playback::setSubFilter(int index) {
mutex.lock();
ac::setSubFilter(index);
mutex.unlock();
}
void Playback::setSingleMode(bool val) {
single_mode = val;
}