White screen after latest fixes
Alexander Potochkin
Alexander.Potochkin at oracle.com
Thu Sep 8 10:59:51 PDT 2011
Hello
After the latest updates all of my tests for AWT components are broken,
I keep getting the empty window with white background with no components.
rebuilding the JDK doesn't cure it
I wonder if anybody else has the same problem?
Could you check the following test:
import java.awt.*;
public class ButtonTest {
public static void main(String[] args) {
Frame frame = new Frame();
frame.add(new Button("Hello"));
frame.setSize(200,200);
frame.setVisible(true);
}
}
Thanks much!
alexp
More information about the macosx-port-dev
mailing list