-
Bug
-
Resolution: Duplicate
-
P3
-
None
-
5.0
-
generic
-
generic
"All Files" text from "Files of Type:" combobox is partially hidden when orientation is set RTL. See attached picture and code below.
------------------------------------------------------------
import java.awt.*;
import javax.swing.*;
public class JFileChooserTest {
public static void main(String[] args) {
JFileChooser c = new JFileChooser();
c.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
c.showOpenDialog(null);
}
}
------------------------------------------------------------
------------------------------------------------------------
import java.awt.*;
import javax.swing.*;
public class JFileChooserTest {
public static void main(String[] args) {
JFileChooser c = new JFileChooser();
c.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
c.showOpenDialog(null);
}
}
------------------------------------------------------------
- duplicates
-
JDK-5001776 JComboBox not proper for RTL orientation in WinXP & Metal-Ocean LAF
- Resolved