You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The setOnMouse...(...) methods are used internally by the JFXtras window control. This is bad design and should be fixed. Feel free to report the bug there. I'll fix it ASAP.
When retrieving a Window for a node, the mouse click event is ignored (e.g. mouse entered does its job!):
VFlow vFlow ...;
VNode vNode ...;
vFlow.getNodeSkinsById(vNode.getId()).stream()
.filter(s -> s instanceof FXFlowNodeSkin)
.map(s -> ((FXFlowNodeSkin) s).getNode())
.forEach(window -> {
The text was updated successfully, but these errors were encountered: