mirror of
https://github.com/cookiengineer/audacity
synced 2025-07-03 22:19:07 +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)
|
&mValue, NumValidatorStyle::DEFAULT, -100.0, 100.0)
|
||||||
.AddTextBox({}, wxEmptyString, 15);
|
.AddTextBox({}, wxEmptyString, 15);
|
||||||
}
|
}
|
||||||
|
else if (style == VEL_SLIDER)
|
||||||
|
{
|
||||||
|
mTextCtrl = S
|
||||||
|
.Validator<IntegerValidator<float>>(
|
||||||
|
&mValue, NumValidatorStyle::DEFAULT, -50.0, 50.0)
|
||||||
|
.AddTextBox({}, wxEmptyString, 15);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
mTextCtrl = S
|
mTextCtrl = S
|
||||||
|
Loading…
x
Reference in New Issue
Block a user