save current tab in onStop

onDestroy sometimes (often) isn't called
This commit is contained in:
anescient 2018-07-16 10:12:21 -05:00
parent 490679a3c8
commit c1ac6c35a0
1 changed files with 2 additions and 2 deletions

View File

@ -78,8 +78,8 @@ class MainActivity : SimpleActivity() {
}
}
override fun onDestroy() {
super.onDestroy()
override fun onStop() {
super.onStop()
config.lastUsedViewPagerPage = view_pager.currentItem
}