-
Bug
-
Resolution: Fixed
-
P2
-
5.0
-
None
-
b26
-
x86
-
linux
Name: dmR10075 Date: 08/26/2003
Run the following test case, Dialog will appear, try to resize it - you
will be able to do this. This is reproducible with 1.5.0b16, XAWT, not
reproducible with Motif. This is probably a result of missing fixes
integrated only in Motif but not XAWT(see 4911831).
import java.awt.*;
public class Test {
public static void main(String[] args) {
Dialog dlg = new Dialog(new Frame(), "", true);
dlg.setLocation(1102, 432);
dlg.setResizable(false);
dlg.toBack();
dlg.show();
}
}
======================================================================
- relates to
-
JDK-4911831 Fixes for 4897578, 4862945 should be backported into XAWT
-
- Resolved
-