make sure to hide the keyboard before opening settings

This commit is contained in:
tibbi 2022-04-11 11:10:06 +02:00
parent 40e74cff5a
commit ed8d46478b
1 changed files with 1 additions and 1 deletions

View File

@ -613,8 +613,8 @@ class MainActivity : SimpleActivity() {
} }
private fun launchSettings() { private fun launchSettings() {
closeSearchIfOpen()
hideKeyboard() hideKeyboard()
closeSearchIfOpen()
startActivity(Intent(applicationContext, SettingsActivity::class.java)) startActivity(Intent(applicationContext, SettingsActivity::class.java))
} }