From 2e4b34a1a1cf93a94d28c63fb9150ec09c2e3e36 Mon Sep 17 00:00:00 2001 From: =?utf8?q?IOhannes=20m=20zm=C3=B6lnig=20=28Debian/GNU=29?= Date: Mon, 10 Jan 2022 09:00:59 +0100 Subject: [PATCH] New upstream version 0.19.2+ds1 --- ChangeLog | 4 ++++ src/core/mixerHandler.cpp | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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; -- 2.30.2