Skip to content

Commit

Permalink
Fix selections in sorted database search dialogs
Browse files Browse the repository at this point in the history
  • Loading branch information
larsgw committed May 4, 2018
1 parent d7d6acc commit f3853d6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ protected void okPressed() {
//Store selected value
int row = table.getSelectedRow();
if(row > -1) {
selected = xrefs.get(row);
selected = xrefs.get(table.convertRowIndexToModel(row));
} else {
selected = null;
}
Expand Down

0 comments on commit f3853d6

Please sign in to comment.