Skip to content

Commit

Permalink
fix: #112
Browse files Browse the repository at this point in the history
  • Loading branch information
hstyi authored Jan 23, 2025
1 parent e2d77fe commit 7964950
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/kotlin/app/termora/HostOptionsPane.kt
Original file line number Diff line number Diff line change
Expand Up @@ -1006,7 +1006,8 @@ open class HostOptionsPane : OptionsPane() {
val rows = table.selectedRows.sortedDescending()
if (rows.isEmpty()) return
for (row in rows) {
model.removeRow(row)
jumpHosts.removeAt(row)
model.fireTableRowsDeleted(row, row)
}
}
})
Expand Down

0 comments on commit 7964950

Please sign in to comment.