Mega Code Archive

 
Categories / Java Tutorial / Swing
 

Forcing a Popup Menu to Be a Heavyweight Component

import javax.swing.JPopupMenu; public class Main {   public static void main(String[] argv) throws Exception {     JPopupMenu popupMenu = new JPopupMenu();     boolean lwPopup = popupMenu.isLightWeightPopupEnabled(); // true     popupMenu.setLightWeightPopupEnabled(false);   } }