]> git.sesse.net Git - kdenlive/blobdiff - src/doubleparameterwidget.cpp
Fix crash when changing speed of a clip that has a fade: http://kdenlive.org/mantis...
[kdenlive] / src / doubleparameterwidget.cpp
index 136a3bcba32862882bea20dbbefeaf65a97d5e7f..9aa55e9b2495a3804a9cc9a8ae4ee6fe6268156e 100644 (file)
@@ -53,7 +53,7 @@ DoubleParameterWidget::DoubleParameterWidget(const QString &name, double value,
         m_commentLabel->setHidden(true);
         layout->addWidget(m_commentLabel, 1, 0, 1, -1);
     }
-    m_dragVal->setValue(value);
+    m_dragVal->setValue(value, false);
     connect(m_dragVal, SIGNAL(valueChanged(double, bool)), this, SLOT(slotSetValue(double, bool)));
     connect(m_dragVal, SIGNAL(inTimeline(int)), this, SIGNAL(setInTimeline(int)));
 }