]> git.sesse.net Git - kdenlive/blobdiff - src/effectstackedit.cpp
Fix issues with double values in effects drag widget, now the new LADSPA effects...
[kdenlive] / src / effectstackedit.cpp
index ad4df484dca03fa0cf5e70f9cb5164e1941ce38e..6a9ab4dd3267d0db61e65b608874962887ff568a 100644 (file)
@@ -274,7 +274,7 @@ void EffectStackEdit::transferParamDesc(const QDomElement d, ItemInfo info, bool
                     pa.attribute("default").toDouble(), comment, -1, pa.attribute("suffix"), pa.attribute("decimals").toInt(), this);
             m_vbox->addWidget(doubleparam);
             m_valueItems[paramName] = doubleparam;
-            connect(doubleparam, SIGNAL(valueChanged(int)), this, SLOT(collectAllParameters()));
+            connect(doubleparam, SIGNAL(valueChanged(double)), this, SLOT(collectAllParameters()));
             connect(this, SIGNAL(showComments(bool)), doubleparam, SLOT(slotShowComment(bool)));
         } else if (type == "list") {
             Listval *lsval = new Listval;