From: IOhannes m zmölnig (Debian/GNU) Date: Mon, 10 Jan 2022 08:00:59 +0000 (+0100) Subject: New upstream version 0.19.2+ds1 X-Git-Tag: archive/raspbian/0.20.1+ds1-1+rpi1~1^2~12^2~2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=2e4b34a1a1cf93a94d28c63fb9150ec09c2e3e36;p=giada.git New upstream version 0.19.2+ds1 --- diff --git a/ChangeLog b/ChangeLog index c745055..815cc33 100644 --- a/ChangeLog +++ b/ChangeLog @@ -11,6 +11,10 @@ -------------------------------------------------------------------------------- +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 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;