Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4978274

REGRESSION:ToggleButtons have a slightly different appearance from normal button

XMLWordPrintable

    • 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"));
              }
      }

            alexp Alexander Potochkin (Inactive)
            tyao Ting-Yun Ingrid Yao (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: