Skip to content

Commit

Permalink
fix: call to nativeView (#8488)
Browse files Browse the repository at this point in the history
  • Loading branch information
NickIliev committed Apr 1, 2020
1 parent dc7215f commit 2b06adc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nativescript-core/ui/text-base/text-base.android.ts
Expand Up @@ -104,7 +104,7 @@ export class TextBase extends TextBaseCommon {
initializeTextTransformation();
const nativeView = this.nativeTextViewProtected;
this._defaultTransformationMethod = nativeView.getTransformationMethod();
this._defaultMovementMethod = this.nativeView.getMovementMethod();
this._defaultMovementMethod = nativeView.getMovementMethod();
this._minHeight = nativeView.getMinHeight();
this._maxHeight = nativeView.getMaxHeight();
this._minLines = nativeView.getMinLines();
Expand Down

0 comments on commit 2b06adc

Please sign in to comment.