fix to show searchbar after bottom dialog operations

Signed-off-by: Marcel Hibbe <dev@mhibbe.de>
This commit is contained in:
Marcel Hibbe 2022-02-14 17:50:13 +01:00
parent 4335e44701
commit 6bc5d324b5
No known key found for this signature in database
GPG key ID: C793F8B59F43CE7B
2 changed files with 6 additions and 0 deletions

View file

@ -452,6 +452,7 @@ public class ConversationsListController extends BaseController implements Searc
return false; return false;
} }
@Override
protected void showSearchOrToolbar() { protected void showSearchOrToolbar() {
if (TextUtils.isEmpty(searchQuery)) { if (TextUtils.isEmpty(searchQuery)) {
super.showSearchOrToolbar(); super.showSearchOrToolbar();

View file

@ -807,4 +807,9 @@ public class OperationsMenuController extends BaseController {
dispose(); dispose();
} }
} }
@Override
public AppBarLayoutType getAppBarLayoutType() {
return AppBarLayoutType.SEARCH_BAR;
}
} }