Changeset: cb9eaf4855fa Author: Felipe Heidrich <felipe.heidr...@oracle.com> Date: 2014-05-28 15:59 -0700 URL: http://hg.openjdk.java.net/openjfx/8u-dev/rt/rev/cb9eaf4855fa
RT-36985: [Accessibility, Windows] Combobox won't take accessibility focus when clicked with mouse (but tabbing works) This changeset fixes the handling of the focusedIndex == -1 case for list, table, tree, tabletree. This happens when the control is empty, or no item is focused (even though the control is), this happens to the ListView inside the ComboBoxListViewSkin cause 'selectOnFocusGain' is false in it. ! modules/controls/src/main/java/com/sun/javafx/scene/control/skin/ListViewSkin.java ! modules/controls/src/main/java/com/sun/javafx/scene/control/skin/TableViewSkinBase.java ! modules/controls/src/main/java/com/sun/javafx/scene/control/skin/TreeViewSkin.java ! modules/controls/src/main/java/javafx/scene/control/TableView.java ! modules/controls/src/main/java/javafx/scene/control/TreeTableView.java