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
When creating a radial menu with CenterVisibility.NEVER the center IS visible until a mouse enter / mouse exit forces a redraw. I added a centerVisibility check in my RadialMenu constructor. Not sure if this is the best way but now the center is hidden when the radial menu appears.
this.centerGroup = new Group();
if(this.centerVisibility.get() == CenterVisibility.NEVER) {
this.centerGroup.setVisible(false);
}
The text was updated successfully, but these errors were encountered:
When creating a radial menu with CenterVisibility.NEVER the center IS visible until a mouse enter / mouse exit forces a redraw. I added a centerVisibility check in my RadialMenu constructor. Not sure if this is the best way but now the center is hidden when the radial menu appears.
The text was updated successfully, but these errors were encountered: