From f35a1dfca85d0ae8e27a0e88606c0517f8ff2b83 Mon Sep 17 00:00:00 2001 From: WeakOstra Date: Sun, 8 Feb 2026 17:50:58 +0100 Subject: [PATCH] Fix Pattern Editor UI updates when adjusting note volume via scrolling (#8196) Closes #7806 --- src/gui/editors/PianoRoll.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/gui/editors/PianoRoll.cpp b/src/gui/editors/PianoRoll.cpp index 52d906b58..d57084cc0 100644 --- a/src/gui/editors/PianoRoll.cpp +++ b/src/gui/editors/PianoRoll.cpp @@ -4101,6 +4101,8 @@ void PianoRoll::wheelEvent(QWheelEvent * we ) // same volume showVolTextFloat(nv[0]->getVolume(), pos, 1000); } + // Emit MIDI clip has changed + m_midiClip->dataChanged(); } else if( m_noteEditMode == NoteEditMode::Panning ) {