mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-28 02:37:16 +00:00
Debug: suggest all
This commit is contained in:
parent
9e2315e301
commit
f98ee1ad81
1 changed files with 2 additions and 1 deletions
|
@ -417,7 +417,8 @@ public class FragmentOptions extends FragmentBase {
|
|||
}
|
||||
|
||||
private int getSuggestions(String query, int id, int tab, String title, View view, MatrixCursor cursor) {
|
||||
if (view == null || "nosuggest".equals(view.getTag()))
|
||||
if (view == null ||
|
||||
("nosuggest".equals(view.getTag()) && !BuildConfig.DEBUG))
|
||||
return id;
|
||||
else if (view instanceof ViewGroup) {
|
||||
ViewGroup group = (ViewGroup) view;
|
||||
|
|
Loading…
Reference in a new issue