Fix default tap actions

This commit is contained in:
Yegor Vialov
2018-12-14 16:31:41 +02:00
parent 79669243c2
commit a3226311a2

View File

@ -16,6 +16,9 @@ class EntityWrapper {
}) {
this.icon = icon ?? entity.icon;
this.displayName = displayName ?? entity.displayName;
if (this.uiAction == null) {
this.uiAction = EntityUIAction();
}
}
void handleTap() {