fix: disable group divider on EMUI (#453)

Fixes an issues, where the forth menu item does not show up, when the divider is enabled on EMUI devices
This commit is contained in:
FineFindus
2023-03-11 13:00:36 +01:00
committed by GitHub
parent 7ea42c8403
commit 5c7fe9dcb5
2 changed files with 5 additions and 1 deletions

View File

@@ -358,7 +358,7 @@ public class HomeTabFragment extends MastodonToolbarFragment implements Scrollab
addListsToOverflowMenu();
addHashtagsToOverflowMenu();
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.P && !UiUtils.isEMUI()) {
m.setGroupDividerEnabled(true);
}
}