1
0
Fork 0
nih-plug/nih_plug_egui/src/widgets.rs
2022-03-13 23:33:43 +01:00

13 lines
330 B
Rust

//! Custom egui widgets for displaying parameter values.
//!
//! # Note
//!
//! None of these widgets are finalized, and their sizes or looks can change at any point. Feel free
//! to copy the widgets and modify them to your personal taste.
pub mod generic_ui;
mod param_slider;
pub mod util;
pub use param_slider::ParamSlider;