1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

ValueTree : only exclude listener on first invoke

This commit is contained in:
Martin Hermant 2020-07-21 13:10:58 +02:00
parent 6a01abbc41
commit 93507d22a9
No known key found for this signature in database
GPG key ID: 01FC1253497FAE08

View file

@ -428,7 +428,8 @@ public:
target->removeProperty (name, nullptr);
else
target->setProperty (name, newValue, nullptr, excludeListener);
// only exclude on first invocation
excludeListener = nullptr;
return true;
}