mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-07 12:16:42 +01:00
midi_edit: FieldH -> FieldV
This commit is contained in:
parent
5097b61c7f
commit
83b82c9572
1 changed files with 5 additions and 5 deletions
|
|
@ -134,9 +134,9 @@ impl MidiEditor {
|
||||||
let (color, name, length, looped) = if let Some(clip) = self.clip().as_ref().map(|p|p.read().unwrap()) {
|
let (color, name, length, looped) = if let Some(clip) = self.clip().as_ref().map(|p|p.read().unwrap()) {
|
||||||
(clip.color, clip.name.clone(), clip.length, clip.looped)
|
(clip.color, clip.name.clone(), clip.length, clip.looped)
|
||||||
} else { (ItemPalette::G[64], String::new().into(), 0, false) };
|
} else { (ItemPalette::G[64], String::new().into(), 0, false) };
|
||||||
row!(
|
Bsp::e(
|
||||||
FieldV(color, "Edit", format!("{name} ({length})")),
|
FieldH(color, "Edit", format!("{name} ({length})")),
|
||||||
FieldV(color, "Loop", looped.to_string())
|
FieldH(color, "Loop", looped.to_string())
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
pub fn edit_status (&self) -> impl Content<TuiOut> + '_ {
|
pub fn edit_status (&self) -> impl Content<TuiOut> + '_ {
|
||||||
|
|
@ -150,8 +150,8 @@ impl MidiEditor {
|
||||||
let note_name = format!("{:4}", Note::pitch_to_name(self.note_pos()));
|
let note_name = format!("{:4}", Note::pitch_to_name(self.note_pos()));
|
||||||
let note_len = format!("{:>4}", self.note_len());
|
let note_len = format!("{:>4}", self.note_len());
|
||||||
Bsp::e(
|
Bsp::e(
|
||||||
FieldV(color, "Time", format!("{length}/{time_zoom}+{time_pos} {time_lock}")),
|
FieldH(color, "Time", format!("{length}/{time_zoom}+{time_pos} {time_lock}")),
|
||||||
FieldV(color, "Note", format!("{note_name} {note_pos} {note_len}")),
|
FieldH(color, "Note", format!("{note_name} {note_pos} {note_len}")),
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue