-
Bug
-
Resolution: Duplicate
-
P3
-
None
-
1.3.0
-
x86
-
windows_nt
###@###.### :
Empty frame does not repaint itself when resized. The following test
demonstrates it:
-------------------------------------------------------------
import java.awt.*;
class Test extends Frame
{
public static void main(String[] args) {
Test f = new Test();
// f.setSize(100,100);
f.show();
}
}
-------------------------------------------------------------
This test shows a window of minimal size. If you resize it, it does
not repaint itself. If you uncomment setSize() call, problem goes
away.
This is a Kestrel regression, it does not occur on previous version.
It also doesn't occur on Solaris.
Empty frame does not repaint itself when resized. The following test
demonstrates it:
-------------------------------------------------------------
import java.awt.*;
class Test extends Frame
{
public static void main(String[] args) {
Test f = new Test();
// f.setSize(100,100);
f.show();
}
}
-------------------------------------------------------------
This test shows a window of minimal size. If you resize it, it does
not repaint itself. If you uncomment setSize() call, problem goes
away.
This is a Kestrel regression, it does not occur on previous version.
It also doesn't occur on Solaris.
- duplicates
-
JDK-4237728 Regression: Empty frame does not repaint itself
- Resolved