feat: use range instead of location/arrangement markers

Signed-off-by: Christopher Arndt <chris@chrisarndt.de>
This commit is contained in:
Christopher Arndt 2024-01-20 17:21:11 +01:00
parent 8a14996bb1
commit 65506891f6
1 changed files with 7 additions and 8 deletions

View File

@ -3,7 +3,7 @@ ardour {
name = "Rename regions from markers",
license = "MIT",
author = "Christopher Arndt",
description = [[Rename selected regions using track name and label of location marker at region start]]
description = [[Rename selected regions using track name and label of range marker at region start]]
}
function factory()
@ -24,7 +24,6 @@ function factory ()
local sel = Editor:get_selection () -- get current selection
local loc = Session:locations() -- get locations
-- prepare undo operation
Session:begin_reversible_command ("Rename regions from markers")
@ -38,11 +37,11 @@ function factory ()
--~ print("Region:", region:name())
local rid = region:to_stateful():id()
--~ print("ID:", id:to_s())
--~ print("ID:", rid:to_s())
-- get marker at region start position
-- get range marker at region start position
local pos = region:position()
local mloc = loc:first_mark_at(pos, Temporal.timecnt_t(0))
local mloc = loc:range_starts_at(pos, Temporal.timecnt_t(0), true)
if not mloc then
goto next
end