Skip to content

Commit

Permalink
Move selection already protects from negative position
Browse files Browse the repository at this point in the history
  • Loading branch information
zonkmachine committed Dec 8, 2017
1 parent 3c9e0d8 commit 269194c
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/core/Track.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -899,10 +899,6 @@ void TrackContentObjectView::mouseMoveEvent( QMouseEvent * me )
&& me->button() == Qt::NoButton )
{
t = t.toNearestTact() + offset;
while( t < 0 )
{
t += MidiTime::ticksPerTact();
}
}
( *it )->movePosition( t );
}
Expand Down

0 comments on commit 269194c

Please sign in to comment.