From c92741f567a6b12b22818c9f06de2fd0335f7ca3 Mon Sep 17 00:00:00 2001 From: regulus79 <117475203+regulus79@users.noreply.github.com> Date: Wed, 17 Dec 2025 18:04:07 -0500 Subject: [PATCH] Fix Pattern Editor Not Updating (#8175) The TrackContentWidgets in the pattern editor rely on the positionChanged signal to be sent when the pattern index changes so that they know when to update. This signal was removed in #7454, but this PR puts it back. --- src/gui/editors/PatternEditor.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/editors/PatternEditor.cpp b/src/gui/editors/PatternEditor.cpp index 919393857..6c3b66e29 100644 --- a/src/gui/editors/PatternEditor.cpp +++ b/src/gui/editors/PatternEditor.cpp @@ -198,6 +198,7 @@ void PatternEditor::updatePosition() { trackView->update(); } + emit positionChanged(m_currentPosition); } void PatternEditor::updatePixelsPerBar()