Reduce search close cooldown

This commit is contained in:
MM20 2023-08-27 12:21:52 +02:00
parent cd08d8887d
commit ac29dd512c
No known key found for this signature in database
GPG Key ID: 0B61A8F2DEAFA389

View File

@ -279,7 +279,7 @@ abstract class SharedLauncherActivity(
override fun onResume() {
super.onResume()
if (System.currentTimeMillis() - pauseTime > 60000) {
if (System.currentTimeMillis() - pauseTime > 20000) {
viewModel.closeSearchWithoutAnimation()
searchVM.search("")
}