Focus stays in the filterField while typing

This commit is contained in:
Akarshit Wal
2015-08-23 09:12:13 +05:30
parent 0b60702481
commit ce07ccec2d

View File

@@ -128,7 +128,10 @@ public class ContributionListPanel extends JPanel implements Scrollable, Contrib
if (table.getSelectedRow() != -1) {
setSelectedPanel(panelByContribution.get(table.getValueAt(table
.getSelectedRow(), 0)));
table.requestFocusInWindow();
// Preventing the focus to move out of filterField after typing every character
if (!contributionTab.filterField.hasFocus()) {
table.requestFocusInWindow();
}
}
}
});