-
Bug
-
Resolution: Fixed
-
P3
-
5.0
-
beta2
-
x86
-
windows_2000
###@###.### 2004-01-14
J2SE version (please include all output from java -version flag):
java version "1.5.0-beta"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0-beta2-b32)
Java HotSpot(TM) Client VM (build 1.5.0-beta2-b32, mixed mode)
Does this problem occur on J2SE 1.3, 1.4 or 1.4.1? Yes / No (pick one)
No, works fine on 1.4.2
Operating System Configuration Information (be specific):
Windows 2000
Bug Description:
ToggleButtons have a slightly different appearance from normal
buttons. Worse, they are rendered with a different height even if their
height is set the same as that of a JButton's.
Steps to Reproduce (be specific):
- compile and run ButtonTestCase.java
- see the inconsistency is very obvious
Test program: (ButtonTestCase.java)
import javax.swing.*;
import javax.swing.border.*;
import java.awt.*;
public class ButtonTestCase extends JFrame
{
public static void main(String[] args)
{
JFrame frame = new ButtonTestCase();
frame.pack();
frame.show();
}
public ButtonTestCase()
{
getContentPane().setLayout(new GridLayout(1,4));
((JComponent)getContentPane()).setBorder(
new EmptyBorder(12,12,12,12));
getContentPane().add(new JButton("C"));
getContentPane().add(new JToggleButton("C++"));
getContentPane().add(new JButton("Lisp"));
getContentPane().add(new JToggleButton("Forth"));
}
}
- relates to
-
JDK-5037684 Ocean JToggleButton still has wrong border
-
- Resolved
-
-
JDK-5010856 Metal L&F: JFileChooser toolbar needs to be more neatly aligned in Java L&F
-
- Closed
-