mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-03 06:03:13 +02:00
Handle VEL_SLIDER in SliderDialog
This commit is contained in:
parent
7356c735ae
commit
217ba2bbec
@ -297,6 +297,13 @@ SliderDialog::SliderDialog(wxWindow * parent, wxWindowID id,
|
||||
&mValue, NumValidatorStyle::DEFAULT, -100.0, 100.0)
|
||||
.AddTextBox({}, wxEmptyString, 15);
|
||||
}
|
||||
else if (style == VEL_SLIDER)
|
||||
{
|
||||
mTextCtrl = S
|
||||
.Validator<IntegerValidator<float>>(
|
||||
&mValue, NumValidatorStyle::DEFAULT, -50.0, 50.0)
|
||||
.AddTextBox({}, wxEmptyString, 15);
|
||||
}
|
||||
else
|
||||
{
|
||||
mTextCtrl = S
|
||||
|
Loading…
x
Reference in New Issue
Block a user