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
In the visualization tab, the 3D Window (an AWT component) paints over the menus (a Swing component). One way to fix this is to declare menus to be heavyweight:
If I remember correctly, the surprising solution is to invoke a static method of JPopupMenu class, which addresses issues with all menus:
JPopupMenu.setLightWeightPopupEnabled(false);
The text was updated successfully, but these errors were encountered:
In the visualization tab, the 3D Window (an AWT component) paints over the menus (a Swing component). One way to fix this is to declare menus to be heavyweight:
If I remember correctly, the surprising solution is to invoke a static method of JPopupMenu class, which addresses issues with all menus:
JPopupMenu.setLightWeightPopupEnabled(false);
The text was updated successfully, but these errors were encountered: