-
Bug
-
Resolution: Won't Fix
-
P4
-
None
-
1.3.0
-
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);
}
}
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);
}
}