mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-09 13:16:44 +01:00
arranger: rename track/scene/clip
This commit is contained in:
parent
ea463db139
commit
70b1ec5a02
15 changed files with 53 additions and 40 deletions
|
|
@ -19,7 +19,7 @@ impl Sequencer {
|
|||
let args = SequencerCli::parse();
|
||||
let mut seq = Self::new("");
|
||||
if let Some(name) = args.name {
|
||||
seq.name = name.clone();
|
||||
seq.name = Arc::new(RwLock::new(name.clone()));
|
||||
}
|
||||
if let Some(ppq) = args.ppq {
|
||||
seq.ppq = ppq;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue