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

it to 100 by scrolling up (closes #2656024)
This commit is contained in:
Tobias Doerffel
2009-03-04 19:00:04 +01:00
parent 402a2d32f7
commit fa3d004f42

View File

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