1
0
Fork 0

For #11361 - Nulls out tabsFeature in the correct spot

master
Jeff Boek 2020-06-09 10:03:56 -07:00 committed by Emily Kager
parent 8bcd7579d5
commit 4ee1cd6716
1 changed files with 1 additions and 1 deletions

View File

@ -122,6 +122,7 @@ class TabTrayDialogFragment : AppCompatDialogFragment(), TabTrayInteractor {
override fun onDestroyView() {
_tabTrayView = null
tabsFeature = null
super.onDestroyView()
}
@ -134,7 +135,6 @@ class TabTrayDialogFragment : AppCompatDialogFragment(), TabTrayInteractor {
override fun onStop() {
tabsFeature?.stop()
tabTrayView.tabsTray.unregister(tabTrayView)
tabsFeature = null
super.onStop()
}