mirror of
https://github.com/ra3xdh/qucs_s
synced 2025-03-28 21:13:26 +00:00
Prevent starting simulation in multiple threads at tuning
This commit is contained in:
parent
afe87e7b24
commit
a5f87d2fac
@ -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()
|
||||
|
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user