1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-03-15 07:29:15 +01:00

Bugfix: reset min/max ui spinboxes on curvetype change.

This commit is contained in:
Mike LaBranche 2012-07-06 21:47:08 -07:00
parent 6a12701e63
commit b95290a32f

View File

@ -117,6 +117,9 @@ void MixerCurve::UpdateCurveUI()
//get the user settings
QString curveType = m_mixerUI->CurveType->currentText();
m_mixerUI->CurveMin->setValue(m_mixerUI->CurveMin->minimum());
m_mixerUI->CurveMax->setValue(m_mixerUI->CurveMax->maximum());
m_mixerUI->CurveStep->setMinimum(0.0);
m_mixerUI->CurveStep->setMaximum(100.0);
@ -323,9 +326,6 @@ void MixerCurve::CurveTypeChanged()
{
// setup the ui for this curvetype
UpdateCurveUI();
// and generate a curve based on the selection
GenerateCurve();
}
void MixerCurve::CurveMinChanged(double value)