Instantly hide app drawer without animation when using closeAppDrawer method

This commit is contained in:
Ensar Sarajčić 2023-07-26 18:23:42 +02:00
parent 2534131851
commit fd46c078fb

View File

@ -485,7 +485,9 @@ class MainActivity : SimpleActivity(), FlingListener {
fun closeAppDrawer() {
if (isAllAppsFragmentExpanded()) {
hideFragment(all_apps_fragment)
all_apps_fragment.y = mScreenHeight.toFloat()
all_apps_fragment.all_apps_grid.scrollToPosition(0)
home_screen_grid.fragmentCollapsed()
}
}