mirror of
https://github.com/mapmapteam/mapmap.git
synced 2026-04-10 17:49:12 +02:00
Fixed bug: Hiding a solo-ed mapping was stopping playback.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user