diff --git a/ui/core/bindable.ts b/ui/core/bindable.ts index f5ed4535e..cc924fe3a 100644 --- a/ui/core/bindable.ts +++ b/ui/core/bindable.ts @@ -80,7 +80,7 @@ export class Bindable extends dependencyObservable.DependencyObservable implemen trace.write("Bindable._onPropertyChanged(" + this + ") " + property.name, trace.categories.Binding); super._onPropertyChanged(property, oldValue, newValue); if (this instanceof viewModule.View) { - if (((this))._isInheritedChange() === true) { + if (property.metadata.inheritable && ((this))._isInheritedChange() === true) { return } }