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.
This commit is contained in:
regulus79
2025-12-17 18:04:07 -05:00
committed by GitHub
parent 0fe7d6f679
commit c92741f567

View File

@@ -198,6 +198,7 @@ void PatternEditor::updatePosition()
{
trackView->update();
}
emit positionChanged(m_currentPosition);
}
void PatternEditor::updatePixelsPerBar()