From efee8ab14791874f26cbc712a7f8aff502ce1155 Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Wed, 25 Aug 2010 00:35:07 +0200 Subject: [PATCH] PianoRoll: fix last commit Commit 28eb7e00bf654c9f0e193e4c7244f18fbe50bd46 was based on a patch created for the stable-0.4 branch. It therefore used note::selected() instead of note::isSelected(). --- src/gui/piano_roll.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/piano_roll.cpp b/src/gui/piano_roll.cpp index 97594a771..6990e05a1 100644 --- a/src/gui/piano_roll.cpp +++ b/src/gui/piano_roll.cpp @@ -2000,7 +2000,7 @@ void pianoRoll::mouseMoveEvent( QMouseEvent * _me ) if( n->pos().getTicks() >= ticks_start && n->pos().getTicks() <= ticks_end && n->length().getTicks() != 0 - && ( n->selected() || ! use_selection ) ) + && ( n->isSelected() || ! use_selection ) ) { m_pattern->dataChanged();