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

Setting background color of panel incorrectly changes colors of buttons on Linux

XMLWordPrintable

    • x86
    • linux

      FULL PRODUCT VERSION :
      java version "1.4.2"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2-b28)
      Java HotSpot(TM) Client VM (build 1.4.2-b28, mixed mode)


      ADDITIONAL OS VERSION INFORMATION :
      Linux twain 2.4.20-20.9 #1 Mon Aug 18 11:27:43 EDT 2003 i686 athlon i386 GNU/Linux


      A DESCRIPTION OF THE PROBLEM :
      On Linux, setting the background color of a Panel incorrectly changes the background color of buttons contained in the panel, often making their text unreadable.

      This error does not occur on Windows.


      STEPS TO FOLLOW TO REPRODUCE THE PROBLEM :
      Compile and following program wit:

      javac ButtonTest.java

      java ButtonTest

      EXPECTED VERSUS ACTUAL BEHAVIOR :
      EXPECTED -
      Expect button text to be visible.
      ACTUAL -
      Button shows up black-on-black. Compare with behavior on Windows which does *not* change the background color of the buttons to match the panel.

      REPRODUCIBILITY :
      This bug can be reproduced always.

      ---------- BEGIN SOURCE ----------
      import java.awt.*;
       
      public class ButtonTest extends Panel
      {
         public ButtonTest()
         {
            setBackground(Color.black);
            add(new Button("Test"));
         }
       
         public static void main(String[] args)
         {
            ButtonTest b = new ButtonTest();
            Frame f = new Frame();
            f.add(b);
            f.setSize(100,100);
            f.show(); // Deprecated call necessary for testing against 1.1
         }
      }

      ---------- END SOURCE ----------

      CUSTOMER SUBMITTED WORKAROUND :
      Write once, test everywhere.

            dav Andrei Dmitriev (Inactive)
            dav Andrei Dmitriev (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: