From da9e88e48804c47a0b6c9551e9ac1498e8a3d3ee Mon Sep 17 00:00:00 2001 From: M374LX Date: Wed, 11 Mar 2015 22:01:18 -0300 Subject: [PATCH] Fix song editor pattern update bug --- src/gui/editors/PianoRoll.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gui/editors/PianoRoll.cpp b/src/gui/editors/PianoRoll.cpp index 3184fa44f..4b5f6cd74 100644 --- a/src/gui/editors/PianoRoll.cpp +++ b/src/gui/editors/PianoRoll.cpp @@ -863,6 +863,7 @@ void PianoRoll::shiftPos( int amount ) //shift notes pos by amount } m_pattern->rearrangeAllNotes(); + m_pattern->dataChanged(); // we modified the song update();