-
Bug
-
Resolution: Fixed
-
P4
-
5.0
-
b43
-
generic
-
generic
After setting the choosers orientation from right to left, pressing on the tab key still moves the focus from left to right.
See code below:
------------------------------------------------------------------------
import java.awt.*;
import javax.swing.*;
public class JFileChooserTest {
public static void main(String[] args) {
JFileChooser chooser = new JFileChooser();
chooser.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
chooser.showOpenDialog(null);
}
}
------------------------------------------------------------------------
See code below:
------------------------------------------------------------------------
import java.awt.*;
import javax.swing.*;
public class JFileChooserTest {
public static void main(String[] args) {
JFileChooser chooser = new JFileChooser();
chooser.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
chooser.showOpenDialog(null);
}
}
------------------------------------------------------------------------