summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/mixerHandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/mixerHandler.cpp b/src/core/mixerHandler.cpp
index bbf46c9..31cf8ae 100644
--- a/src/core/mixerHandler.cpp
+++ b/src/core/mixerHandler.cpp
@@ -232,7 +232,7 @@ void MixerHandler::renameChannel(ID channelId, const std::string& name)
void MixerHandler::updateSoloCount()
{
bool hasSolos = forAnyChannel([](const Channel& ch) {
- return ch.isSoloed();
+ return !ch.isInternal() && ch.isSoloed();
});
m_model.get().mixer.hasSolos = hasSolos;