diff --git a/nih_plug_vizia/src/widgets/generic_ui.rs b/nih_plug_vizia/src/widgets/generic_ui.rs index 191537da..48da2257 100644 --- a/nih_plug_vizia/src/widgets/generic_ui.rs +++ b/nih_plug_vizia/src/widgets/generic_ui.rs @@ -52,7 +52,7 @@ impl GenericUi { Some(step_count) if step_count <= 1 => { ParamSliderStyle::CurrentStepLabeled { even: true } } - Some(step_count) if step_count <= 64 => { + Some(step_count) if step_count <= 2 => { ParamSliderStyle::CurrentStep { even: true } } Some(_) => ParamSliderStyle::FromLeft,