From 69810d720338e0cfd1cc91ed05cc7147c90a4859 Mon Sep 17 00:00:00 2001 From: Zlatin Balevsky Date: Tue, 10 Mar 2020 19:35:39 +0000 Subject: [PATCH] fix variable name --- gui/griffon-app/views/com/muwire/gui/MainFrameView.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/griffon-app/views/com/muwire/gui/MainFrameView.groovy b/gui/griffon-app/views/com/muwire/gui/MainFrameView.groovy index 3908d7de..1a0b07b2 100644 --- a/gui/griffon-app/views/com/muwire/gui/MainFrameView.groovy +++ b/gui/griffon-app/views/com/muwire/gui/MainFrameView.groovy @@ -1344,7 +1344,7 @@ class MainFrameView { if (row < 0) return null if (lastFeedsSortEvent != null) - row = table.rowSorter.convertRowIndexToModel(row) + row = feedsTable.rowSorter.convertRowIndexToModel(row) model.feeds[row] }