From 6af3ab587571aeb037f3ff6d71cc68fefc74160c Mon Sep 17 00:00:00 2001 From: Fawn Date: Fri, 21 Mar 2025 04:07:15 -0600 Subject: [PATCH] Fix missing update to mixer channel name when created (#7795) Fixes a regression from 07baf9e27a4990b2e1cc88b9cbe1347c70366d9d, in which a channel that was created through a tracks "Assign track to new mixer channel" context menu would display an incorrect name until it was renamed by a user. --- src/gui/MixerView.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/MixerView.cpp b/src/gui/MixerView.cpp index d05ff097d..5cb99295b 100644 --- a/src/gui/MixerView.cpp +++ b/src/gui/MixerView.cpp @@ -376,6 +376,7 @@ void MixerView::updateMixerChannel(int index) } thisLine->m_sendButton->updateLightStatus(); + thisLine->m_renameLineEdit->setText(thisLine->elideName(thisLine->mixerChannel()->m_name)); thisLine->update(); }