From 08acd84fe24a5be5178d00d22a426dfc73713d22 Mon Sep 17 00:00:00 2001 From: Manol Donev Date: Wed, 23 Jan 2019 11:09:04 +0200 Subject: [PATCH] fix(ios): native view frame optimizations in nested scenario (#6809) --- tns-core-modules/ui/core/view/view.ios.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/tns-core-modules/ui/core/view/view.ios.ts b/tns-core-modules/ui/core/view/view.ios.ts index 2c1c5aed0..009ffbe70 100644 --- a/tns-core-modules/ui/core/view/view.ios.ts +++ b/tns-core-modules/ui/core/view/view.ios.ts @@ -225,8 +225,6 @@ export class View extends ViewCommon { const { sizeChanged } = this._setCurrentLayoutBounds(left, top, right, bottom); this.updateBackground(sizeChanged); this._privateFlags &= ~PFLAG_LAYOUT_REQUIRED; - // NOTE: if there is transformation this frame will be incorrect. - this._cachedFrame = this.nativeViewProtected.frame; } public focus(): boolean {