From 6508da52c082f2899d86ebdab84d7893ad727480 Mon Sep 17 00:00:00 2001 From: NickIliev Date: Wed, 1 Apr 2020 15:10:44 +0300 Subject: [PATCH] fix: call to nativeView --- nativescript-core/ui/text-base/text-base.android.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nativescript-core/ui/text-base/text-base.android.ts b/nativescript-core/ui/text-base/text-base.android.ts index 200285c8aa..356d32badc 100644 --- a/nativescript-core/ui/text-base/text-base.android.ts +++ b/nativescript-core/ui/text-base/text-base.android.ts @@ -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();