-
Enhancement
-
Resolution: Unresolved
-
P4
-
None
-
1.3.0
-
Fix Understood
-
generic
-
generic
Name: ssT124754 Date: 03/21/2001
java version "1.3.1-beta"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.1-beta-b15)
Java HotSpot(TM) Client VM (build 1.3.1beta-b15, mixed mode)
* The coding of the BasicMenuItemUI is poor - there is a hard
* coded "defaultTextIconGap=4" in the "installDefaults" method and the
* gap is inserted whether text is used or not! The only way to fix
* this is to override the UI for JMenu's & JMenuItem's:
setUI(new javax.swing.plaf.basic.BasicMenuUI() {
protected void installDefaults() {
super.installDefaults();
defaultTextIconGap = 0;
}
});
(Review ID: 119197)
======================================================================
- relates to
-
JDK-4738983 JMenuItem.setIconTextGap does nothing
-
- Resolved
-