fix(android): fragment onPause (#8919)

This commit is contained in:
Martin Guillon
2020-09-30 16:38:20 +02:00
committed by GitHub
parent 3a52957102
commit a55bcd8561

View File

@ -16,7 +16,7 @@ const FragmentClass = (<any>org.nativescript.widgets.FragmentBase).extend('com.t
},
onPause(): void {
this._callbacks.onPause(this, superProto.onStop);
this._callbacks.onPause(this, superProto.onPause);
},
onCreate(savedInstanceState: android.os.Bundle) {