mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-08 04:36:45 +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
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue