1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

Use ADD when pasting Episode data from the clipboard to better support "manual matching" use cases (where multiple files are matched to the same episode)

This commit is contained in:
Reinhard Pointner 2018-05-12 22:56:19 +07:00
parent 0bca308f5a
commit b3ee9f3520

View File

@ -55,8 +55,8 @@ public abstract class TransferablePolicy {
return TransferAction.fromDnDConstant(support.getDropAction());
}
// use PUT by default (e.g. clipboard transfers)
return TransferAction.PUT;
// use ADD by default (e.g. clipboard transfers)
return TransferAction.ADD;
}
public static enum TransferAction {