Deleting Automation Points at coarser quantization

Regression from f9ab2dec02
Don't follow quantization as you will have to move the
cursor that length before any deletion is made.
This commit is contained in:
Oskar Wallgren
2017-10-26 01:32:06 +02:00
parent 05971cac6a
commit 9715da332b

View File

@@ -688,7 +688,7 @@ void AutomationEditor::removePoints( int x0, int x1 )
int x = x0;
int xstep;
if( deltax < AutomationPattern::quantization() )
if( deltax < 1 )
{
return;
}