From 9715da332b0c279739414712d4be9f0335147f3a Mon Sep 17 00:00:00 2001 From: Oskar Wallgren Date: Thu, 26 Oct 2017 01:32:06 +0200 Subject: [PATCH] Deleting Automation Points at coarser quantization Regression from f9ab2dec025672e82e5198d142e45ebc6adcf5af Don't follow quantization as you will have to move the cursor that length before any deletion is made. --- src/gui/editors/AutomationEditor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/editors/AutomationEditor.cpp b/src/gui/editors/AutomationEditor.cpp index 23dcd3f75..ca65b5275 100644 --- a/src/gui/editors/AutomationEditor.cpp +++ b/src/gui/editors/AutomationEditor.cpp @@ -688,7 +688,7 @@ void AutomationEditor::removePoints( int x0, int x1 ) int x = x0; int xstep; - if( deltax < AutomationPattern::quantization() ) + if( deltax < 1 ) { return; }