-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P4
-
Affects Version/s: 1.3.0
-
Component/s: client-libs
-
linux-beta
-
x86
-
linux
-
Verified
Name: asR10013 Date: 04/19/2000
The following code should produce window with width and height
equal to 200 pixels. But frame does not change its dimentions.
----------------------------- test.java --------------------------------
import java.lang.*;
import java.awt.*;
class test {
public static void main(String args[]){
Frame f = new Frame();
f.setSize(200,200);
f.show();
}
}
======================================================================