mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-30 09:31:11 +01:00
Make bottom navigation actions invisible when unavailable
This commit is contained in:
@@ -246,8 +246,8 @@ public class FragmentMessage extends Fragment {
|
||||
: R.drawable.baseline_visibility_24);
|
||||
actionSeen.setTitle(message.ui_seen ? R.string.title_unseen : R.string.title_seen);
|
||||
|
||||
bottom_navigation.getMenu().findItem(R.id.action_spam).setEnabled(message.account != null);
|
||||
bottom_navigation.getMenu().findItem(R.id.action_archive).setEnabled(message.account != null);
|
||||
bottom_navigation.getMenu().findItem(R.id.action_spam).setVisible(message.account != null);
|
||||
bottom_navigation.getMenu().findItem(R.id.action_archive).setVisible(message.account != null);
|
||||
tvBody.setText(message.body == null
|
||||
? null
|
||||
: Html.fromHtml(HtmlHelper.sanitize(getContext(), message.body, false)));
|
||||
|
||||
Reference in New Issue
Block a user