diff --git a/openbr/openbr_plugin.cpp b/openbr/openbr_plugin.cpp index 56fe04a..cace29a 100644 --- a/openbr/openbr_plugin.cpp +++ b/openbr/openbr_plugin.cpp @@ -722,7 +722,6 @@ bool Object::setPropertyRecursive(const QString & name, QVariant value) if (this->metaObject()->indexOfProperty(qPrintable(name)) == -1) return false; - qDebug() << "Class: " << metaObject()->className() << "took property" << name; setProperty(name, value); init(); return true; diff --git a/openbr/plugins/independent.cpp b/openbr/plugins/independent.cpp index 224cbe8..b04252f 100644 --- a/openbr/plugins/independent.cpp +++ b/openbr/plugins/independent.cpp @@ -138,6 +138,7 @@ class IndependentTransform : public MetaTransform for (int i=0;i < transforms.size();i++) { transforms[i]->setPropertyRecursive(name, value); } + return true; } void init()