Skip to content

Commit

Permalink
fix(profile): take away favorites from the topbar icons list
Browse files Browse the repository at this point in the history
This fixes a thing where the menu entry would just be weird
  • Loading branch information
LucasGGamerM authored Dec 25, 2023
1 parent f9f863e commit d8cc578
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -820,7 +820,7 @@ public void onCreateOptionsMenu(Menu menu, MenuInflater inflater){
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);
}
Expand Down

0 comments on commit d8cc578

Please sign in to comment.