Fix reversed behaviour of Playlist -> New and New Copy

Resolves: #7146

Thanks again to elgoun for the patch
This commit is contained in:
Tim Mayberry 2016-11-28 10:59:32 +10:00
parent f50ab8ccec
commit 198b8f6b58

View File

@ -1243,9 +1243,9 @@ RouteTimeAxisView::use_new_playlist (bool prompt, vector<boost::shared_ptr<Playl
if (name.length()) {
if (copy) {
tr->use_new_playlist ();
} else {
tr->use_copy_playlist ();
} else {
tr->use_new_playlist ();
}
tr->playlist()->set_name (name);
}