Commit 19c98388 authored by Leonardo Aramaki's avatar Leonardo Aramaki

Fix showIcons logic on ActionsAdapter

parent 037fa2f2
......@@ -15,7 +15,7 @@ class ActionListAdapter(menuItems: List<MenuItem> = emptyList(), callback: MenuI
val item = menuItems[position]
if (showIcons) {
holder.imageIcon.setVisible(item.icon == null)
holder.imageIcon.setVisible(item.icon != null)
} else {
holder.imageIcon.setVisible(false)
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment