PianoRoll: fix last commit

Commit 28eb7e00bf was based on a patch
created for the stable-0.4 branch. It therefore used note::selected()
instead of note::isSelected().
This commit is contained in:
Tobias Doerffel
2010-08-25 00:35:07 +02:00
parent 28eb7e00bf
commit efee8ab147

View File

@@ -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();