List of usage examples for javax.swing JPopupMenu getDefaultLightWeightPopupEnabled
public static boolean getDefaultLightWeightPopupEnabled()
defaultLightWeightPopupEnabled
property, which by default is true
. From source file:Main.java
public static void main(String[] argv) throws Exception { boolean lwPopup = JPopupMenu.getDefaultLightWeightPopupEnabled(); // true // Globally use heavyweight components for all popup menus JPopupMenu.setDefaultLightWeightPopupEnabled(false); }