fix sorting bug try 2

This commit is contained in:
Zlatin Balevsky
2019-06-15 08:58:51 +01:00
parent 5778d537ce
commit 6b38d7bffb

View File

@@ -86,8 +86,8 @@ class MainFrameController {
return return
def sortEvt = group.view.lastSortEvent def sortEvt = group.view.lastSortEvent
if (sortEvt != null) { if (sortEvt != null) {
row = sortEvt.convertPreviousRowIndexToModel(row) row = group.view.resultsTable.rowSorter.convertRowIndexToModel(row)
} }
group.model.results[row] group.model.results[row]
} }