Debug: suggest all

This commit is contained in:
M66B 2022-03-12 09:06:17 +01:00
parent 9e2315e301
commit f98ee1ad81
1 changed files with 2 additions and 1 deletions

View File

@ -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;