PatternView: if volume of a step is 95 it was not possible to increase

it to 100 by scrolling up (closes #2656024)

Backported from fa3d004f42 (master)
This commit is contained in:
Tobias Doerffel
2009-03-04 19:00:04 +01:00
parent 95b0607745
commit a6fbb8bb2d

View File

@@ -1086,6 +1086,10 @@ void patternView::wheelEvent( QWheelEvent * _we )
{
n->setVolume( vol + 5 );
}
else
{
n->setVolume( 100 );
}
}
else
{