mirror of
https://codeberg.org/unspeaker/tek.git
synced 2025-12-08 12:46:42 +01:00
This commit is contained in:
parent
b0ef0cfd21
commit
fa73821a0b
29 changed files with 831 additions and 650 deletions
|
|
@ -15,7 +15,7 @@ pub struct App {
|
|||
/// Theme
|
||||
pub color: ItemTheme,
|
||||
/// Contains all clips in the project
|
||||
pub pool: Option<MidiPool>,
|
||||
pub pool: Option<Pool>,
|
||||
/// Contains the currently edited MIDI clip
|
||||
pub editor: Option<MidiEditor>,
|
||||
/// Contains a render of the project arrangement, redrawn on update.
|
||||
|
|
@ -275,7 +275,7 @@ impl App {
|
|||
}
|
||||
|
||||
/// Get the clip pool, if present
|
||||
pub(crate) fn pool (&self) -> Option<&MidiPool> {
|
||||
pub(crate) fn pool (&self) -> Option<&Pool> {
|
||||
self.pool.as_ref()
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue