diff --git a/modules/juce_data_structures/values/juce_Value.cpp b/modules/juce_data_structures/values/juce_Value.cpp index 18f1124591e4..c3f6f5ce9c8d 100644 --- a/modules/juce_data_structures/values/juce_Value.cpp +++ b/modules/juce_data_structures/values/juce_Value.cpp @@ -174,7 +174,7 @@ Value& Value::operator= (const var& newValue) return *this; } -void Value::referTo (const Value& valueToReferTo) +void Value::referTo (const Value& valueToReferTo, bool notifyListeners) { if (valueToReferTo.value != value) { @@ -185,7 +185,7 @@ void Value::referTo (const Value& valueToReferTo) } value = valueToReferTo.value; - callListeners(); + if(notifyListeners) callListeners(); } } diff --git a/modules/juce_data_structures/values/juce_Value.h b/modules/juce_data_structures/values/juce_Value.h index 94f6d1eda146..7adae044e179 100644 --- a/modules/juce_data_structures/values/juce_Value.h +++ b/modules/juce_data_structures/values/juce_Value.h @@ -112,7 +112,7 @@ class JUCE_API Value final Existing listeners will still be registered after you call this method, and they'll continue to receive messages when the new value changes. */ - void referTo (const Value& valueToReferTo); + void referTo (const Value& valueToReferTo, bool notifyListeners = true); /** Returns true if this object and the other one use the same underlying ValueSource object.