Fix: Show soft keyboard only in AppsList

Not shown when picking any arbitrary action.
This commit is contained in:
Finn M Glas 2020-10-12 18:26:03 +02:00
parent 108b1f4de9
commit 0bf30b50ab
No known key found for this signature in database
GPG key ID: 902A30146014DFBF

View file

@ -12,6 +12,7 @@ import com.finnmglas.launcher.dominantColor
import com.finnmglas.launcher.list.forApp
import com.finnmglas.launcher.list.intention
import com.finnmglas.launcher.openSoftKeyboard
import kotlinx.android.synthetic.main.list.*
import kotlinx.android.synthetic.main.list_apps.*
@ -68,6 +69,8 @@ class ListFragmentApps : Fragment(), UIObject {
}
})
openSoftKeyboard(context!!, list_apps_searchview)
when (intention) {
"view" -> openSoftKeyboard(context!!, list_apps_searchview)
}
}
}