Allow TiedPropertyList to fire valueChanged

This commit is contained in:
James Turner 2020-04-10 10:41:00 +01:00
parent 92ebdbfacc
commit 21e21a1fa8

View File

@ -134,6 +134,13 @@ public:
for (std::vector<SGPropertyNode_ptr>::iterator it=begin() ; it < end(); it++ )
(*it)->setAttribute(attr, state);
}
void fireValueChanged()
{
for (const auto& p : *this) {
p->fireValueChanged();
}
}
private:
SGPropertyNode_ptr _root;
};