summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2011-05-12 21:29:27 +0000
committerCarl Hetherington <carl@carlh.net>2011-05-12 21:29:27 +0000
commitac23288b5d842048a9c015027e179acbf1646af4 (patch)
treec578301fcde532347ecedf23dffbeac63ce387d9 /gtk2_ardour
parent56d392f41c58a1fbe68ff87169f0cc4ac89777bc (diff)
Fix update of session range location on copy-dragging regions (#4038).
git-svn-id: svn://localhost/ardour2/branches/3.0@9504 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/editor_drag.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/editor_drag.cc b/gtk2_ardour/editor_drag.cc
index e1c7332133..278a38f304 100644
--- a/gtk2_ardour/editor_drag.cc
+++ b/gtk2_ardour/editor_drag.cc
@@ -869,9 +869,9 @@ RegionMoveDrag::finished_copy (bool const changed_position, bool const /*changed
}
if (_x_constrained) {
- _editor->begin_reversible_command (_("fixed time region copy"));
+ _editor->begin_reversible_command (Operations::fixed_time_region_copy);
} else {
- _editor->begin_reversible_command (_("region copy"));
+ _editor->begin_reversible_command (Operations::region_copy);
}
/* insert the regions into their new playlists */