From d8cc57853709e6c7228305776d272fb3b7e86032 Mon Sep 17 00:00:00 2001 From: LucasGGamerM <71328265+LucasGGamerM@users.noreply.github.com> Date: Sun, 24 Dec 2023 23:20:48 -0300 Subject: [PATCH] fix(profile): take away favorites from the topbar icons list This fixes a thing where the menu entry would just be weird --- .../org/joinmastodon/android/fragments/ProfileFragment.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mastodon/src/main/java/org/joinmastodon/android/fragments/ProfileFragment.java b/mastodon/src/main/java/org/joinmastodon/android/fragments/ProfileFragment.java index 80b277a60f..2565916111 100644 --- a/mastodon/src/main/java/org/joinmastodon/android/fragments/ProfileFragment.java +++ b/mastodon/src/main/java/org/joinmastodon/android/fragments/ProfileFragment.java @@ -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); }