working UI controls

This commit is contained in:
snt 2024-05-04 16:45:05 +02:00
parent 88704cd726
commit 5a7a82736f
10 changed files with 58 additions and 54 deletions

View file

@ -52,8 +52,6 @@ SliderGroup::SliderGroup(QString name,
void SliderGroup::sliderValueChanged(int value)
{
valueBox->setValue(value);
if (valueBox->decimals() > 1)
value /= 100.0f;
emit valueChanged(value);
};