Make tapping the main toolbar scroll to the top of the timeline. #1899 (#2045)

This commit is contained in:
Levi Bard 2021-01-15 21:23:02 +01:00 committed by Alibek Omarov
parent 6cb7db37a5
commit 6b93d02952
1 changed files with 3 additions and 0 deletions

View File

@ -578,6 +578,9 @@ class MainActivity : BottomSheetActivity(), ActionButtonActivity, HasAndroidInje
val activeTabPosition = if (selectNotificationTab) notificationTabPosition else 0
mainToolbar.title = tabs[activeTabPosition].title(this@MainActivity)
mainToolbar.setOnClickListener {
(adapter.getFragment(activeTabLayout.selectedTabPosition) as? ReselectableFragment)?.onReselect()
}
}