From 029fb065b754fc26c40b9961b047e71e0a64643d Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sat, 3 Jul 2021 18:57:58 -0600 Subject: [PATCH] fix timeline type issues --- libs/ardour/playlist.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ardour/playlist.cc b/libs/ardour/playlist.cc index fc5cfa5346..e713334624 100644 --- a/libs/ardour/playlist.cc +++ b/libs/ardour/playlist.cc @@ -1253,7 +1253,7 @@ Playlist::copy (timepos_t const & start, timecnt_t const & cnt, bool result_is_h // cnt = min (_get_extent().second - start, cnt); (We need the full range length when copy/pasting in Ripple. Why was this limit here? It's not in CUT... ) - return PlaylistFactory::create (shared_from_this (), start, cnt, new_name, result_is_hidden); + return PlaylistFactory::create (shared_from_this (), start, timepos_t (cnt), new_name, result_is_hidden); } int