This commit is contained in:
isidor 2019-11-12 11:13:02 +01:00
parent 77d57689cc
commit 5fbd6bbc56

View file

@ -702,7 +702,7 @@ export class FileDragAndDrop implements ITreeDragAndDrop<ExplorerItem> {
if (targetStat.children) {
const ignoreCase = hasToIgnoreCase(target.resource);
targetStat.children.forEach(child => {
targetNames.add(ignoreCase ? child.name : child.name.toLowerCase());
targetNames.add(ignoreCase ? child.name.toLowerCase() : child.name);
});
}