From 7f1a5a9692b40413af504c56e7f1202e22940414 Mon Sep 17 00:00:00 2001
From: Artur Shaik <ashaihullin@gmail.com>
Date: Tue, 27 May 2014 23:51:05 +0600
Subject: [PATCH] Removed unnecessary alignment of envelope automation during
 copying it

---
 gtk2_ardour/automation_time_axis.cc | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/gtk2_ardour/automation_time_axis.cc b/gtk2_ardour/automation_time_axis.cc
index 08690cd..4687524 100644
--- a/gtk2_ardour/automation_time_axis.cc
+++ b/gtk2_ardour/automation_time_axis.cc
@@ -956,13 +956,4 @@ AutomationTimeAxisView::cut_copy_clear_one (AutomationLine& line, Selection& sel
 		break;
 	}
 
-	if (what_we_got) {
-		for (AutomationList::iterator x = what_we_got->begin(); x != what_we_got->end(); ++x) {
-			double when = (*x)->when;
-			double val  = (*x)->value;
-			line.model_to_view_coord (when, val);
-			(*x)->when = when;
-			(*x)->value = val;
-		}
-	}
 }
-- 
1.8.4.5

