Skip to content

Commit

Permalink
Merge pull request #68 from NicoKiaru/master
Browse files Browse the repository at this point in the history
fix cancel not called when no user confirmation is required
  • Loading branch information
ctrueden authored Apr 10, 2022
2 parents d361dc6 + 4e17b61 commit 7a0bc52
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -238,6 +238,8 @@ public void mouseClicked(java.awt.event.MouseEvent evt) {
if (userconfirmation == JOptionPane.YES_OPTION) {
selectedTask.cancel("User cancellation (table task)");
}
} else {
selectedTask.cancel("User cancellation (table task)");
}
}
}
Expand Down

0 comments on commit 7a0bc52

Please sign in to comment.