text-transform and text-decoration fixed

This commit is contained in:
Vladimir Enchev
2016-04-13 09:56:57 +03:00
parent 77ef1367a0
commit ed5903e173
2 changed files with 5 additions and 5 deletions

View File

@@ -29,10 +29,10 @@ var formattedTextProperty = new dependencyObservable.Property(
function onTextPropertyChanged(data: dependencyObservable.PropertyChangeData) {
var textBase = <TextBase>data.object;
textBase._onTextPropertyChanged(data);
textBase.style._updateTextTransform();
textBase.style._updateTextDecoration();
textBase._onTextPropertyChanged(data);
}
(<proxy.PropertyMetadata>textProperty.metadata).onSetNativeValue = onTextPropertyChanged;