Skip to content

Commit

Permalink
Remove skip all option from transfer prompt option. Use the checkboxe…
Browse files Browse the repository at this point in the history
…s to exclude instead.
  • Loading branch information
dkocher committed Dec 19, 2009
1 parent de8f0c4 commit 2350999
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions source/ch/cyberduck/ui/cocoa/TransferPromptController.java
Original file line number Diff line number Diff line change
Expand Up @@ -462,8 +462,7 @@ public void setActionPopup(final NSPopUpButton actionPopup) {
final TransferAction[] actions = new TransferAction[]{
transfer.isResumable() ? TransferAction.ACTION_RESUME : null,
TransferAction.ACTION_OVERWRITE,
TransferAction.ACTION_RENAME,
TransferAction.ACTION_SKIP};
TransferAction.ACTION_RENAME};

for(TransferAction action : actions) {
if(null == action) {
Expand Down

0 comments on commit 2350999

Please sign in to comment.