We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27c98fe commit 674d2d9Copy full SHA for 674d2d9
sources/net.sf.j2s.java.core/src/javax/swing/LayoutFocusTraversalPolicy.java
@@ -236,7 +236,7 @@ protected boolean accept(Component aComponent) {
236
} else if (aComponent instanceof javax.swing.JTable) {
237
// JTable only has ancestor focus bindings, we thus force it
238
// to be focusable by returning true here.
239
- return true;
+ return false;// SwingJS NOT true, at least for now;
240
} else if (aComponent instanceof javax.swing.JComboBox) {
241
JComboBox box = (JComboBox)aComponent;
242
return ((ComboBoxUI) box.getUI()).isFocusTraversable(box);
0 commit comments