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

Frame's setBackground alters the component's color when it shouldn't

XMLWordPrintable

    • sparc
    • solaris_2.6

      Build : 'L'
      OS : Sol (ok on Win32)

      Component takes on the Frame's setBackground color on Solaris. When it should be default gray like it is on Win32. Setting the component's setBackground method works to set to its own colors but the Frame's setBackground shouldn't affect it.


      import java.awt.*;

      public class nonWhite extends Frame {
       public static void main(String args[]) {
      nonWhite f = new nonWhite();
           f.setSize(100,100);
      f.show();
        }

       public nonWhite() {
      Canvas nonWhite = new Canvas();
      add("Center", nonWhite);
      Button b = new Button("Print");
      add("South", b);

      setBackground(Color.green);
       }
      }

            rraysunw Richard Ray (Inactive)
            rckim Robert Kim (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: