1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-12-23 08:18:52 -05: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()); return TransferAction.fromDnDConstant(support.getDropAction());
} }
// use PUT by default (e.g. clipboard transfers) // use ADD by default (e.g. clipboard transfers)
return TransferAction.PUT; return TransferAction.ADD;
} }
public static enum TransferAction { public static enum TransferAction {