New upstream version 0.19.2+ds1
authorIOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org>
Mon, 10 Jan 2022 08:00:59 +0000 (09:00 +0100)
committerIOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org>
Mon, 10 Jan 2022 08:00:59 +0000 (09:00 +0100)
ChangeLog
src/core/mixerHandler.cpp

index c7450556cee36ac631e742e464dadf013e13e2db..815cc331d08f6718f4d4d88286c827e05bc66db7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
 --------------------------------------------------------------------------------
 
 
+0.19.2 --- 2021 . 12 . 16
+- Fix wrong computation of soloed channels
+
+
 0.19.1 --- 2021 . 12 . 15
 - Enable JUCE_DEBUG in Debug builds
 - New MidiLighter tests + compile-time dependency injection
index bbf46c93e90369f230cfa89ff1a955856b2f43d1..31cf8aef4e8ac5c8f2fd6df9b5b2879f5175d9c4 100644 (file)
@@ -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;