-
Bug
-
Resolution: Fixed
-
P4
-
1.1.6, 1.2.0
-
beta
-
x86
-
windows_nt
Name: dbT83986 Date: 01/21/99
When a window (e.g. a JFRAME) is opened, it is placed by default in the top left corner of the screen. If (as I have it), the Windows
task bar is down the left side of the screen, then the Java window appears partly covered by the task bar.
import javax.swing.*;
public class BasicFrame {
public static void main(String[] args) {
JFrame frame = new JFrame("Simple Frame");
frame.setSize(250, 200);
frame.setVisible(true);
}
}
Surely the auto-placement facility should take into account the Windows task bar?
(Review ID: 53025)
======================================================================