-
Type:
Bug
-
Status: Resolved
-
Priority:
P2
-
Resolution: Fixed
-
Affects Version/s: 5.0, 6
-
Fix Version/s: 6
-
Component/s: client-libs
-
Subcomponent:
-
Introduced In Build:b01
-
Introduced In Version:
-
Resolved In Build:b86
-
CPU:generic, x86
-
OS:generic, windows_xp, windows_vista
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2137091 | 5.0u8 | Brent Christian | P2 | Resolved | Fixed | b02 |
java version "1.6.0-ea"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.6.0-ea-b56)
Java HotSpot(TM) Client VM (build 1.6.0-ea-b56, mixed mode, sharing)
ADDITIONAL OS VERSION INFORMATION :
Microsoft Windows XP [Version 5.1.2600]
A DESCRIPTION OF THE PROBLEM :
Disabled JButtons have a black border around their edges when using the Windows XP look and feel.
It seems that the problem only manifests itself when I use the "Olive Green"
theme. If I use "Default (blue)" or "Silver", the problem isn't there. I
have uploaded a screenshot of the test program running under the three
themes that come with Windows XP.[1] Of them, only the Olive Green one
displays the black border.
[1] http://www.cse.ohio-state.edu/~eckenror/Java/Disabled%20Buttons.png<http://www.cse.ohio-state.edu/%7Eeckenror/Java/Disabled%20Buttons.png>
STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
Observe any disabled JButton in the Windows XP look and feel.
EXPECTED VERSUS ACTUAL BEHAVIOR :
EXPECTED -
The button looks like it does in native apps and did in Tiger.
ACTUAL -
The button has a black border when disabled.
REPRODUCIBILITY :
This bug can be reproduced always.
---------- BEGIN SOURCE ----------
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.UIManager;
public class Main {
public static void main(String[] args) throws Exception {
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JButton button = new JButton("Disabled Text");
button.setEnabled(false);
frame.add(button);
frame.pack();
frame.setVisible(true);
}
}
---------- END SOURCE ----------
- backported by
-
JDK-2137091 REGRESSION: WinXP LaF: Disabled JButtons have black border
-
- Resolved
-
- duplicates
-
JDK-6389845 Win L&F: on Vista the JCombobox's button is rendered incorrectly
-
- Closed
-
-
JDK-6380380 REGRESSION: Disabled JButtons on Windows XP have a 1px black border
-
- Closed
-
-
JDK-6390265 Swing Disabled JButton(s)
-
- Closed
-
-
JDK-6291575 XP L&F: Platform look and feel is broken with non-default themes
-
- Closed
-
-
JDK-2135447 Win L&F: on Vista the JCombobox's button is rendered incorrectly
-
- Closed
-
- relates to
-
JDK-6401166 Tree icons are no longer rendered correctly with the windows look and feel
-
- Closed
-
-
JDK-5106661 XP L&F does not work on Windows Vista (Longhorn) - needs to use uxtheme api
-
- Resolved
-
-
JDK-6429547 XP L&F: Opus theme still draws black combobox arrow
-
- Closed
-
-
JDK-2136687 Tree icons are no longer rendered correctly with the windows look and feel
-
- Resolved
-