From 984f162c1c4284d90118e00b8b3cc2c5a70b1ba8 Mon Sep 17 00:00:00 2001 From: Alexander Djenkov Date: Fri, 4 Jan 2019 16:57:26 +0200 Subject: [PATCH] fix(tab-view): remove onBackPressed override (#6755) --- tns-core-modules/ui/tab-view/tab-view.android.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/tns-core-modules/ui/tab-view/tab-view.android.ts b/tns-core-modules/ui/tab-view/tab-view.android.ts index 6c2302e63..fb214f74e 100644 --- a/tns-core-modules/ui/tab-view/tab-view.android.ts +++ b/tns-core-modules/ui/tab-view/tab-view.android.ts @@ -545,15 +545,6 @@ export class TabView extends TabViewBase { super.disposeNativeView(); } - public onBackPressed(): boolean { - const currentView = this._selectedView; - if (currentView) { - return currentView.onBackPressed(); - } - - return false; - } - public _onRootViewReset(): void { super._onRootViewReset();