From 733388a8ff33f93a1756815d19411e5cddb12fc5 Mon Sep 17 00:00:00 2001 From: M374LX Date: Tue, 10 Mar 2015 22:45:54 -0300 Subject: [PATCH] Fix piano roll select and move issue --- 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 c235fa8b4..3184fa44f 100644 --- a/src/gui/editors/PianoRoll.cpp +++ b/src/gui/editors/PianoRoll.cpp @@ -862,6 +862,8 @@ void PianoRoll::shiftPos( int amount ) //shift notes pos by amount } } + m_pattern->rearrangeAllNotes(); + // we modified the song update(); gui->songEditor()->update();