-
Bug
-
Resolution: Fixed
-
P2
-
6u7, 7
import java.awt.*;
public class Test {
public static void main(String[] args) {
Frame f = new Frame();
Button b = new Button("ok");
f.add(b);
f.setExtendedState(Frame.MAXIMIZED_BOTH);
f.pack();
f.setVisible(true);
}
}
This is a regression of the fix for CR 6637796.
- duplicates
-
JDK-6689303 Resizing doesn't change the size of the content
- Closed
-
JDK-6697413 Content of Frame is repainted incorrectly when Frame has been resized
- Closed
-
JDK-6700551 Increasing the size of a window makes a component clipped
- Closed
-
JDK-6701166 setVisible(true) does not show a Button present in an embedded frame
- Closed
-
JDK-6722346 setVisible doesn't work in Java 1.7 build 25
- Closed
-
JDK-6733264 HW/LW mixing incorrect painting
- Closed
- relates to
-
JDK-6723018 Need to push the test for 6682046
- Resolved
-
JDK-6637796 setBounds doesn't enlarge Component
- Closed
-
JDK-2167756 Allow limited mixing of heavy and lightweight components
- Resolved