Skip to content

Commit

Permalink
fix: one by one confirmation of massive AU delete (resip)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jean-Séverin Lair committed Nov 29, 2019
1 parent 61178aa commit e6703fe
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,9 @@ public void keyPressed(KeyEvent e) {
"Confirmation", UserInteractionDialog.WARNING_DIALOG,
null) != ResipGraphicApp.OK_DIALOG))
return;
boolean confirmFlag=(tree.getSelectionPaths().length==1);
for (TreePath path : tree.getSelectionPaths())
removeSubTree(path, (tree.getSelectionPaths().length==1));
removeSubTree(path, confirmFlag);
}
}
}
Expand Down

0 comments on commit e6703fe

Please sign in to comment.