add PgUp/PgDown in sequencer

This commit is contained in:
🪞👃🪞 2024-10-18 22:42:30 +03:00
parent 359afb2e8c
commit eccb355815
3 changed files with 17 additions and 10 deletions

View file

@ -139,7 +139,7 @@ impl Content for PhraseEditor<Tui> {
if *focused {
if *entered {
lower_left = "[Esc] Exit edit mode [A]ppend [S]et".to_string();
lower_right = format!("[,.] Length: {} {lower_right}", ppq_to_name(*note_len));
lower_right = format!("[,.] Note: {} {lower_right}", ppq_to_name(*note_len));
} else {
lower_left = "[Enter] Edit notes".to_string();
lower_right = format!("[,.] {lower_right}");
@ -206,7 +206,7 @@ impl PhraseEditor<Tui> {
} else {
'·'
});
cell.set_fg(Color::Gray);
cell.set_fg(Color::Rgb(48, 64, 56));
cell.modifier = Modifier::DIM;
});
}