summaryrefslogtreecommitdiff
path: root/gtk2_ardour/editor.cc
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2016-11-25 14:24:15 +0100
committerRobin Gareus <robin@gareus.org>2016-11-25 14:24:29 +0100
commit01f8ca831ae2966b4bd54c0a15a341b0b9790593 (patch)
tree738f0566e8f7e571094ea272a32cfef498fc68ed /gtk2_ardour/editor.cc
parent174d5e05c9dfcec77df82c58008cf4724ee21822 (diff)
cont'd work to prevent duplicate playlist names
Diffstat (limited to 'gtk2_ardour/editor.cc')
-rw-r--r--gtk2_ardour/editor.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/editor.cc b/gtk2_ardour/editor.cc
index 806ec3cd1c..f23f6b22f4 100644
--- a/gtk2_ardour/editor.cc
+++ b/gtk2_ardour/editor.cc
@@ -4330,13 +4330,13 @@ Editor::clear_playlists (TimeAxisView* v)
void
Editor::mapped_use_new_playlist (RouteTimeAxisView& atv, uint32_t sz, vector<boost::shared_ptr<ARDOUR::Playlist> > const & playlists)
{
- atv.use_new_playlist (sz > 1 ? false : true, playlists);
+ atv.use_new_playlist (sz > 1 ? false : true, playlists, false);
}
void
Editor::mapped_use_copy_playlist (RouteTimeAxisView& atv, uint32_t sz, vector<boost::shared_ptr<ARDOUR::Playlist> > const & playlists)
{
- atv.use_copy_playlist (sz > 1 ? false : true, playlists);
+ atv.use_new_playlist (sz > 1 ? false : true, playlists, true);
}
void