Rename Filter -> Sort in menu and remove old references to Filter

This commit is contained in:
Alexander Bakker 2021-01-27 18:32:44 +01:00
parent 778000aa24
commit fd9a387b4e
28 changed files with 2 additions and 56 deletions

View file

@ -210,10 +210,6 @@ public class EntryAdapter extends RecyclerView.Adapter<EntryHolder> implements I
String name = entry.getName().toLowerCase();
if (!_groupFilter.isEmpty()) {
if (group == null && _groupFilter.contains(_view.getContext().getString(R.string.filter_ungrouped))) {
return false;
}
if (group == null || !_groupFilter.contains(group)) {
return true;
}