summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor_canvas_events.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2012-06-10 14:42:22 +0000
committerCarl Hetherington <carl@carlh.net>2012-06-10 14:42:22 +0000
commitdf6222b3b408ecf2aa673beb0fdff2fa309a81a1 (patch)
tree11306c442d4c159770f1a0c35a57d089cae6b7c7 /gtk2_ardour/editor_canvas_events.cc
parent92bf2dc1c2d0edd5fd059db0352e85be494be913 (diff)
Fix another place where regions can be inserted into a
playlist without also getting put into the master list. git-svn-id: svn://localhost/ardour2/branches/3.0@12646 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/editor_canvas_events.cc')
-rw-r--r--gtk2_ardour/editor_canvas_events.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk2_ardour/editor_canvas_events.cc b/gtk2_ardour/editor_canvas_events.cc
index e6b0b8ec9e..4b7d40cdce 100644
--- a/gtk2_ardour/editor_canvas_events.cc
+++ b/gtk2_ardour/editor_canvas_events.cc
@@ -1013,7 +1013,7 @@ Editor::track_canvas_drag_motion (Glib::RefPtr<Gdk::DragContext> const & /*c*/,
return true;
}
- boost::shared_ptr<Region> region_copy = RegionFactory::create (region);
+ boost::shared_ptr<Region> region_copy = RegionFactory::create (region, true);
if (boost::dynamic_pointer_cast<AudioRegion> (region_copy) != 0 &&
dynamic_cast<AudioTimeAxisView*> (tv.first) == 0) {