Re-apply TextBase.formattedText after a style property change

Resolves #1078
This commit is contained in:
Rossen Hristov
2016-02-24 11:07:16 +02:00
parent 026ce23233
commit bda6159bbb
13 changed files with 113 additions and 50 deletions

View File

@@ -1161,4 +1161,8 @@ export class View extends ProxyObject implements definition.View {
public _setNativeViewFrame(nativeView: any, frame: any) {
//
}
public _onStylePropertyChanged(property: Property): void {
//
}
}

1
ui/core/view.d.ts vendored
View File

@@ -555,6 +555,7 @@ declare module "ui/core/view" {
_nativeView: any;
_isVisible: boolean;
_setNativeViewFrame(nativeView: any, frame: any): void;
_onStylePropertyChanged(property: dependencyObservable.Property): void;
//@endprivate
}