Use regular slides for >3 step parameters
This commit is contained in:
parent
6f92c81c1b
commit
70f50018ad
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue