Prevent starting simulation in multiple threads at tuning

This commit is contained in:
Vadim Kuznetsov 2024-02-16 10:58:13 +03:00
parent afe87e7b24
commit a5f87d2fac
2 changed files with 7 additions and 4 deletions

View File

@ -265,7 +265,7 @@ void tunerElement::resetValue()
value->setText(val);
ValueUnitsCombobox->setCurrentIndex(index);
updateSlider();
slotValueChanged();
slotValueChanged(false);
}
/*
@ -462,7 +462,7 @@ void tunerElement::slotSliderChanged()
* The control reaches this function when one of the events above is triggered. It checks if the input value is correct, updates it
* and finally runs the simulation
*/
void tunerElement::slotValueChanged()
void tunerElement::slotValueChanged(bool simulate)
{
bool ok;
float v = getValue(ok);
@ -501,7 +501,9 @@ void tunerElement::slotValueChanged()
updateSlider();
updateProperty();
emit elementValueUpdated();
if (simulate) {
emit elementValueUpdated();
}
value->blockSignals(false);
ValueUnitsCombobox->blockSignals(false);
}
@ -803,6 +805,7 @@ void TunerDialog::slotResetValues()
{
currentElements.at(i)->resetValue();
}
slotElementValueUpdated();
}
void TunerDialog::slotUpdateValues()

View File

@ -97,7 +97,7 @@ class tunerElement : public QWidget
void slotMinValueChanged();
void slotMaxValueChanged();
void slotStepChanged();
void slotValueChanged();
void slotValueChanged(bool simulate = true);
void slotDelete();
void slotDownClicked();
void slotUpClicked();