mirror of
https://github.com/fork-maintainers/iceraven-browser
synced 2024-11-03 23:15:31 +00:00
For #2160 - Hide Keyboard in onPause from EditBookmarkFragment
This commit is contained in:
parent
68dae52fd1
commit
8381025ac5
@ -35,6 +35,7 @@ import mozilla.appservices.places.UrlParseFailed
|
||||
import mozilla.components.concept.storage.BookmarkInfo
|
||||
import mozilla.components.concept.storage.BookmarkNode
|
||||
import mozilla.components.concept.storage.BookmarkNodeType
|
||||
import mozilla.components.support.ktx.android.view.hideKeyboard
|
||||
import org.mozilla.fenix.R
|
||||
import org.mozilla.fenix.components.metrics.Event
|
||||
import org.mozilla.fenix.ext.getColorFromAttr
|
||||
@ -120,6 +121,12 @@ class EditBookmarkFragment : Fragment() {
|
||||
updateBookmarkFromObservableInput()
|
||||
}
|
||||
|
||||
override fun onPause() {
|
||||
super.onPause()
|
||||
bookmark_name_edit.hideKeyboard()
|
||||
bookmark_url_edit.hideKeyboard()
|
||||
}
|
||||
|
||||
private fun updateBookmarkFromObservableInput() {
|
||||
Observable.combineLatest(
|
||||
bookmark_name_edit.textChanges().skipInitialValue(),
|
||||
|
Loading…
Reference in New Issue
Block a user