fix(profile): take away favorites from the topbar icons list

This fixes a thing where the menu entry would just be weird
This commit is contained in:
LucasGGamerM 2023-12-24 23:20:48 -03:00 committed by GitHub
parent f9f863ea5e
commit d8cc578537
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -820,7 +820,7 @@ public class ProfileFragment extends LoaderFragment implements OnBackPressedList
return;
inflater.inflate(isOwnProfile ? R.menu.profile_own : R.menu.profile, menu);
if(isOwnProfile){
UiUtils.enableOptionsMenuIcons(getActivity(), menu, R.id.scheduled, R.id.bookmarks, R.id.favorites);
UiUtils.enableOptionsMenuIcons(getActivity(), menu, R.id.scheduled, R.id.bookmarks);
}else{
UiUtils.enableOptionsMenuIcons(getActivity(), menu, R.id.edit_note);
}