Skip to content

Commit 89a4496

Browse files
committed
GT-2903 corrected terminate checkout from viewed checkouts list. Was
terminating incorrect checkout.
1 parent 90ec8fe commit 89a4496

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Ghidra/Framework/Project/src/main/java/ghidra/framework/main/datatree/CheckoutsPanel.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ private void terminateCheckout(int[] rows) {
128128

129129
Set<ItemCheckoutStatus> toTerminate = new HashSet<>();
130130
for (int i = 0; i < rows.length; i++) {
131-
ItemCheckoutStatus item = tableModel.getRowObject(i);
131+
ItemCheckoutStatus item = tableModel.getRowObject(rows[i]);
132132
toTerminate.add(item);
133133
}
134134

0 commit comments

Comments
 (0)