From 80336d2ea5d8e0541f62751ade2ba5cfbf07435b Mon Sep 17 00:00:00 2001 From: Nedyalko Nikolov Date: Fri, 8 May 2015 13:50:49 +0300 Subject: [PATCH] Property changed disabled for inheritable properties only. --- ui/core/bindable.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } }