Hello,
I was wondering if there is any way to specify an icon for the momentary button attribute.
I have the following attribute descriptor:
public static final AttributeDescriptor UPDATE_ANALOG =
new AttributeDescriptor<>(“analogUpdate”,
ValueType.BOOLEAN,
new MetaItem<>(MetaItemType.LABEL, “Update Analog Value”))
.withFormat(new ValueFormat().setAsMomentary(true));
But currently the button is invisible and it appears only when I hover over it.
Thanks a lot!