-
Bug
-
Resolution: Cannot Reproduce
-
P2
-
None
-
1.1, 1.1.4
-
generic, sparc
-
solaris_2.5.1, solaris_10
On Solaris, if a window is created and pack() is called before show(),
the window never shows up. If resize() is called instead of pack(), then
it shows correctly!
Program below demonstrates. Resproducible on 1.1beta3.
import java.awt.*;
class TestWin extends Window
{
Label label = new Label("Window Test");
TestWin(Frame frame)
{
super(frame);
add("Center", label);
// Pack doesn't work for Window. Is this how it's
// supposed to work or is it a bug?
pack();
// setting the size like this works...
//setSize(200, 200);
}
public static void main(String args[]) {
Frame frame = new Frame("Dummy");
TestWin tw = new TestWin(frame);
tw.show();
}
}
the window never shows up. If resize() is called instead of pack(), then
it shows correctly!
Program below demonstrates. Resproducible on 1.1beta3.
import java.awt.*;
class TestWin extends Window
{
Label label = new Label("Window Test");
TestWin(Frame frame)
{
super(frame);
add("Center", label);
// Pack doesn't work for Window. Is this how it's
// supposed to work or is it a bug?
pack();
// setting the size like this works...
//setSize(200, 200);
}
public static void main(String args[]) {
Frame frame = new Frame("Dummy");
TestWin tw = new TestWin(frame);
tw.show();
}
}
- relates to
-
JDK-4100989 Calling Window.pack() under Solaris causes window not to show up; Win95 works
-
- Closed
-