-
Bug
-
Resolution: Fixed
-
P3
-
1.3.0
-
beta2
-
x86
-
generic
-
Verified
Name: jbT81659 Date: 10/31/2000
JFrame title is always left aligned.
Using the "setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT)" does not
help.
To reproduce bug:
Compile and run the following example(jFrame.java)
Note that JFrame Title is displayed at the left upper corner
---------Code---------------
/* Copyright (c) Sun Microsystems 1998
$Header: /home/sun/src/jFrame.java,v 1.1 2000/04/19 10:15:18 isam Exp $
*/
import java.awt.*;
import javax.swing.*;
public class jFrame extends JApplet
{
public void init()
{
}
public static void main(String[] argv)
{
JFrame frame = new JFrame();
frame.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
frame.setFont (new Font("Lucida Sans Regular", Font.PLAIN, 14));
frame.setTitle("\u05d6\u05d5\u0020\u05e9\u05e0\u05d4\u0020\u05d9\u05e4\u05d4");
frame.setContentPane(new jFrame());
frame.setSize(500, 100);
frame.setVisible(true);
}
}
----------------------------
WorkAround:
======================================================================