-
Bug
-
Resolution: Fixed
-
P4
-
1.3.0
-
None
-
1.3
-
sparc
-
solaris_7
A frame in the ICONIFIED state is not displayed as an icon, but as an
open window. This bug appears on JDK1.3 Solaris and Linux, but not on Windows.
This is not a bug on JDK1.2.2 Solaris and Linux.
To reproduce the bug, run this test:
import java.awt.Frame;
class TestFrame
{
public static void main( String[] args ) {
Frame frame = new Frame();
frame.setBounds(400,200,100,100);
frame.setState(java.awt.Frame.ICONIFIED);
frame.show();
}
}
open window. This bug appears on JDK1.3 Solaris and Linux, but not on Windows.
This is not a bug on JDK1.2.2 Solaris and Linux.
To reproduce the bug, run this test:
import java.awt.Frame;
class TestFrame
{
public static void main( String[] args ) {
Frame frame = new Frame();
frame.setBounds(400,200,100,100);
frame.setState(java.awt.Frame.ICONIFIED);
frame.show();
}
}
- relates to
-
JDK-4157271 Initial ICONIFIED state makes Frame shown and then minimized
-
- Resolved
-