mirror of
https://github.com/nextcloud/notes-android.git
synced 2024-11-21 20:35:58 +03:00
Fix : "search" in overflow menu
Removed the condition for collapsing the actionView before the menu is shown (onPrepareOptionsMenu). Fixes #522
This commit is contained in:
parent
3a25a4b1af
commit
77099f6fcf
1 changed files with 1 additions and 2 deletions
|
@ -72,10 +72,9 @@ public abstract class SearchableBaseNoteFragment extends BaseNoteFragment {
|
|||
searchMenuItem.expandActionView();
|
||||
searchView.setQuery(searchQuery, true);
|
||||
searchView.clearFocus();
|
||||
} else {
|
||||
searchMenuItem.collapseActionView();
|
||||
}
|
||||
|
||||
searchMenuItem.collapseActionView();
|
||||
|
||||
final var searchEditFrame = searchView.findViewById(R.id
|
||||
.search_edit_frame);
|
||||
|
|
Loading…
Reference in a new issue