Fix #9270 Favorites: first created group doesn't show up
This commit is contained in:
parent
4727143bbe
commit
f322116d7d
1 changed files with 1 additions and 1 deletions
|
@ -469,7 +469,7 @@ public class FavoritePointEditorFragmentNew extends PointEditorFragmentNew {
|
|||
categories.add(lastUsedGroup.getDisplayName(app));
|
||||
}
|
||||
for (FavouritesDbHelper.FavoriteGroup fg : getHelper().getFavoriteGroups()) {
|
||||
if (lastUsedGroup != null && !fg.equals(lastUsedGroup) && fg.isVisible()) {
|
||||
if (!fg.equals(lastUsedGroup) && fg.isVisible()) {
|
||||
categories.add(fg.getDisplayName(app));
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue