arranger: rename track/scene/clip

This commit is contained in:
🪞👃🪞 2024-08-22 19:00:58 +03:00
parent ea463db139
commit 70b1ec5a02
15 changed files with 53 additions and 40 deletions

View file

@ -3,7 +3,7 @@ use tek_core::Direction;
/// Phrase editor.
pub struct Sequencer {
pub name: String,
pub name: Arc<RwLock<String>>,
pub mode: bool,
pub focused: bool,
pub entered: bool,
@ -46,7 +46,7 @@ pub struct Sequencer {
impl Sequencer {
pub fn new (name: &str) -> Self {
Self {
name: name.into(),
name: Arc::new(RwLock::new(name.into())),
monitoring: false,
recording: false,
overdub: true,