Normally, if i have a shape in a panel, and I poke on it, it triggers selection in the diagram. In one instance, I have a shape that is acting as a button of sorts, and I don’t want it to select the node. All of the other graph objects in the object tree want to trigger selection normally. Is this possible?
Yes, set isActionable: true
on the object.
This is how the built-in buttons are implemented. (You can see those button definitions here)
awesome, thank you!