We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11d8b68 commit 0aebfb1Copy full SHA for 0aebfb1
src/main/kotlin/ReflectOptions.kt
@@ -49,24 +49,16 @@ class ReflectOptions(
49
}.toMutableList()
50
}
51
reflectPanel.model.refreshReflections(filteredReflection)
52
- rowSelection()
53
54
55
56
private fun resetSearch() {
57
searchBar.text = ""
58
reflectPanel.model.refreshReflections()
59
60
61
62
private fun clearReflection() {
63
reflectPanel.model.clearReflections()
64
65
66
- private fun rowSelection() {
67
- val rowCount = reflectPanel.table.rowCount
68
- if (rowCount != -1) {
69
- reflectPanel.table.setRowSelectionInterval(rowCount - 1, rowCount - 1)
70
- }
71
72
0 commit comments