Skip to content

Commit 0aebfb1

Browse files
committed
Remove row selection
1 parent 11d8b68 commit 0aebfb1

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/main/kotlin/ReflectOptions.kt

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -49,24 +49,16 @@ class ReflectOptions(
4949
}.toMutableList()
5050
}
5151
reflectPanel.model.refreshReflections(filteredReflection)
52-
rowSelection()
5352
}
5453
}
5554

5655
private fun resetSearch() {
5756
searchBar.text = ""
5857
reflectPanel.model.refreshReflections()
59-
rowSelection()
6058
}
6159

6260
private fun clearReflection() {
6361
reflectPanel.model.clearReflections()
6462
}
6563

66-
private fun rowSelection() {
67-
val rowCount = reflectPanel.table.rowCount
68-
if (rowCount != -1) {
69-
reflectPanel.table.setRowSelectionInterval(rowCount - 1, rowCount - 1)
70-
}
71-
}
7264
}

0 commit comments

Comments
 (0)