command_panel.rs

This commit is contained in:
Martin Kavík 2024-09-14 19:48:09 +02:00
parent d1bcb4f9b4
commit 3aa48b1b78
3 changed files with 146 additions and 133 deletions

View file

@ -13,6 +13,9 @@ use waveform_panel::{PixiController, WaveformPanel};
mod header_panel;
use header_panel::HeaderPanel;
mod command_panel;
use command_panel::CommandPanel;
pub mod theme;
use theme::*;
@ -101,4 +104,5 @@ fn root() -> impl Element {
}
}
)
.item(CommandPanel::new())
}