show rich cells

This commit is contained in:
🪞👃🪞 2025-01-10 00:05:36 +01:00
parent 69832723b3
commit 39c44d1e67
3 changed files with 35 additions and 18 deletions

View file

@ -48,9 +48,9 @@ pub enum TekMode {
/// Multi-track MIDI sequencer.
Arranger {
/// Number of tracks
#[arg(short = 'x', long, default_value_t = 16)] tracks: usize,
#[arg(short = 'x', long, default_value_t = 12)] tracks: usize,
/// Width of tracks
#[arg(short = 'w', long, default_value_t = 6)] track_width: usize,
#[arg(short = 'w', long, default_value_t = 10)] track_width: usize,
/// Number of scenes
#[arg(short = 'y', long, default_value_t = 8)] scenes: usize,
},