diff --git a/nih_plug_egui/README.md b/nih_plug_egui/README.md index 4304fa86..1a43ac62 100644 --- a/nih_plug_egui/README.md +++ b/nih_plug_egui/README.md @@ -4,5 +4,5 @@ This provides an adapter to create [egui](https://github.com/emilk/egui) based GUIs with NIH-plug through [egui-baseview](https://github.com/BillyDM/egui-baseview). -Consider using [`nih_plug_iced`](../nih_plug_iced) instead or -[`nih_plug_vizia`](../nih_plug_vizia). +Consider using [`nih_plug_iced`](../nih_plug_iced) or +[`nih_plug_vizia`](../nih_plug_vizia) instead. diff --git a/nih_plug_vizia/src/widgets/param_slider.rs b/nih_plug_vizia/src/widgets/param_slider.rs index 373ccaa4..098036de 100644 --- a/nih_plug_vizia/src/widgets/param_slider.rs +++ b/nih_plug_vizia/src/widgets/param_slider.rs @@ -11,7 +11,8 @@ use super::RawParamEvent; /// noramlized parameter. const GRANULAR_DRAG_MULTIPLIER: f32 = 0.1; -/// A slider that integrates with NIH-plug's [`Param`] types. +/// A slider that integrates with NIH-plug's [`Param`] types. Use the +/// [`set_style()`][Self::set_style()] method to change how the value gets displayed. /// /// TODO: Handle scrolling for steps (and shift+scroll for smaller steps?) /// TODO: We may want to add a couple dedicated event handlers if it seems like those would be