Fixed bug: Hiding a solo-ed mapping was stopping playback.

This commit is contained in:
Tats
2016-10-05 00:37:21 -04:00
parent 410578d062
commit 5e96d23255

View File

@@ -174,8 +174,8 @@ QVector<Mapping::ptr> MappingManager::getVisibleMappings() const
it != mappingVector.end(); ++it)
{
// Solo has priority over invisible (mute)
if ( (hasSolo && (*it)->isSolo() && (*it)->isVisible()) ||
(! hasSolo && (*it)->isVisible()) )
if ( (hasSolo && (*it)->isSolo()) ||
(! hasSolo && (*it)->isVisible()) )
{
visible.push_back(*it);
}