From 9ff63a5f5a49f445ee53afcb055adff447638b59 Mon Sep 17 00:00:00 2001 From: saker Date: Sun, 24 Mar 2024 18:05:15 -0400 Subject: [PATCH] Set mixer channel LCD when its index changes (#7160) --- src/gui/MixerChannelView.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/MixerChannelView.cpp b/src/gui/MixerChannelView.cpp index 928255806..e7d4fc5b3 100644 --- a/src/gui/MixerChannelView.cpp +++ b/src/gui/MixerChannelView.cpp @@ -277,6 +277,7 @@ namespace lmms::gui m_muteButton->setModel(&mixerChannel->m_muteModel); m_soloButton->setModel(&mixerChannel->m_soloModel); m_effectRackView->setModel(&mixerChannel->m_fxChain); + m_channelNumberLcd->setValue(index); m_channelIndex = index; }