I'm trying to change the JInternalFrame
iconifying size, I've tried changing the L&F defaults with
javax.swing.UIManager.put("DesktopIcon.width", 300);
but it doesn't work on Nimbus, I've also tried changing the DesktopIconUI
with
javax.swing.UIManager.put("DesktopIconUI", javax.swing.plaf.basic.BasicDesktopIconUI.class.getName());
but as soon as I minimize the JInternalFrame
it dissapears, any sugestions?
You might be able to override the
getBoundsForIconOf(JInternalFrame)
method ofDefaultDesktopManager
:JInternalFrame.JDesktopIcon
:Font
of the minimizedJInternalFrame