mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-22 20:48:00 +01:00
Merge pull request #2718 from Aga-C/change-search-hint
Change search hint on the main screen according to the setting
This commit is contained in:
commit
6195d6cf78
1 changed files with 6 additions and 1 deletions
|
@ -245,6 +245,12 @@ class MainActivity : SimpleActivity(), DirectoryOperationsListener {
|
|||
tryLoadGallery()
|
||||
}
|
||||
}
|
||||
|
||||
if (config.searchAllFilesByDefault) {
|
||||
main_menu.updateHintText(getString(R.string.search_files))
|
||||
} else {
|
||||
main_menu.updateHintText(getString(R.string.search_folders))
|
||||
}
|
||||
}
|
||||
|
||||
override fun onPause() {
|
||||
|
@ -330,7 +336,6 @@ class MainActivity : SimpleActivity(), DirectoryOperationsListener {
|
|||
main_menu.getToolbar().inflateMenu(menuId)
|
||||
main_menu.toggleHideOnScroll(true)
|
||||
main_menu.setupMenu()
|
||||
main_menu.updateHintText(getString(R.string.search_folders))
|
||||
|
||||
if (isPiePlus()) {
|
||||
main_menu.onSearchOpenListener = {
|
||||
|
|
Loading…
Reference in a new issue