summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorIOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org>2022-01-10 09:00:59 +0100
committerIOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org>2022-01-10 09:00:59 +0100
commit2e4b34a1a1cf93a94d28c63fb9150ec09c2e3e36 (patch)
tree8f7f5bf15fea6eeafed42a8c23a37ee0e60d9a74 /src
parent7a8f08d9a43006cc9cddcb6b224bc7df24e044f8 (diff)
New upstream version 0.19.2+ds1
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;