Show operation errors in nav menu

This commit is contained in:
M66B
2019-05-04 22:38:11 +02:00
parent 496ce0ae9e
commit f473703299
4 changed files with 38 additions and 5 deletions

View File

@@ -21,6 +21,10 @@ public class NavMenuItem {
this.longClick = longClick;
}
void setIcon(int icon) {
this.icon = icon;
}
void setCount(Integer count) {
if (count != null && count == 0)
count = null;