-
Bug
-
Resolution: Fixed
-
P2
-
1.4.1
-
mantis
-
x86
-
windows_nt
Name: pa48320 Date: 07/17/2002
Run the following class:
public class q
{
public static void main(String[] a)
{
javax.swing.JFrame t = new javax.swing.JFrame("test");
t.setBounds(0,0,100,100);
t.getContentPane().setLayout(new java.awt.FlowLayout));
t.getContentPane().add(new javax.swing.JTextField("WLabel"));
t.getContentPane().add(new javax.swing.JLabel("WLabel"));
t.setDefaultCloseOperation(javax.swing.JFrame.EXIT_ON_CLOSE);
t.setVisible(true);
}
}
The label should appear in a bold font. Notice that the W is slightly chopped off on the left side. The textfield appears fine. If you switch this to yuse the Windows look and feel then the W is cut off quite a bit and the textfield leading W is also cut off.
======================================================================
- relates to
-
JDK-4899334 Strings starting with 'W' are truncated in table cells
-
- Resolved
-
-
JDK-6448455 JTextField under Windows look and feel has caret position issue during scrolling
-
- Closed
-
-
JDK-4140220 JLabel cuts off front of 'W' if it begins the text with 11pt SansSerif font
-
- Closed
-
-
JDK-4262130 JLabel having last few pixels cut off when italic font used
-
- Closed
-
-
JDK-5081024 W still clipped in JLabels if rendered via HTML
-
- Closed
-