Fix setting text property to number. (#3449)

Fix setting JS property from native.
This commit is contained in:
Hristo Hristov
2017-01-09 18:13:31 +02:00
committed by GitHub
parent e3acdcbc78
commit 309ea148e1
23 changed files with 156 additions and 153 deletions

View File

@ -14,7 +14,7 @@ class CheckedChangeListener extends java.lang.Object implements android.widget.C
onCheckedChanged(buttonView: android.widget.CompoundButton, isChecked: boolean): void {
let owner = this.owner.get();
if (owner) {
owner.nativePropertyChanged(checkedProperty, isChecked);
checkedProperty.nativeValueChange(owner, isChecked);
}
}
}