well, 55 errors until up to date

and then we fix
This commit is contained in:
okay stopped screaming 2026-03-21 20:33:51 +02:00
parent 0577309b19
commit 7ff1d989a9
5 changed files with 333 additions and 344 deletions

View file

@ -31,7 +31,7 @@ use builder_pattern::Builder;
/// Must not be dropped for the duration of the process
pub jack: Jack<'static>,
/// Display size
pub size: Measure<TuiOut>,
pub size: Measure<Tui>,
/// Performance counter
pub perf: PerfModel,
/// Available view modes and input bindings
@ -468,9 +468,9 @@ use builder_pattern::Builder;
/// TODO rename to "render_cache" or smth
pub arranger: Arc<RwLock<Buffer>>,
/// Display size
pub size: Measure<TuiOut>,
pub size: Measure<Tui>,
/// Display size of clips area
pub size_inner: Measure<TuiOut>,
pub size_inner: Measure<Tui>,
/// Source of time
#[cfg(feature = "clock")] pub clock: Clock,
/// Allows one MIDI clip to be edited
@ -509,7 +509,7 @@ use builder_pattern::Builder;
pub filter: String,
pub index: usize,
pub scroll: usize,
pub size: Measure<TuiOut>,
pub size: Measure<Tui>,
}
pub(crate) struct EntriesIterator<'a> {
@ -598,7 +598,7 @@ pub struct DeviceAudio<'a>(pub &'a mut Device);
/// ```
pub struct MidiEditor {
/// Size of editor on screen
pub size: Measure<TuiOut>,
pub size: Measure<Tui>,
/// View mode and state of editor
pub mode: PianoHorizontal,
}
@ -613,7 +613,7 @@ pub struct MidiEditor {
/// Buffer where the whole clip is rerendered on change
pub buffer: Arc<RwLock<BigBuffer>>,
/// Size of actual notes area
pub size: Measure<TuiOut>,
pub size: Measure<Tui>,
/// The display window
pub range: MidiSelection,
/// The note cursor
@ -808,7 +808,7 @@ pub struct PoolView<'a>(pub &'a Pool);
/// Currently active modal, if any.
pub mode: Option<SamplerMode>,
/// Size of rendered sampler.
pub size: Measure<TuiOut>,
pub size: Measure<Tui>,
/// Lowest note displayed.
pub note_lo: AtomicUsize,
/// Currently selected note.