提交 5fbd6bbc 编写于 作者: I isidor

fixes #83478

上级 77d57689
...@@ -702,7 +702,7 @@ export class FileDragAndDrop implements ITreeDragAndDrop<ExplorerItem> { ...@@ -702,7 +702,7 @@ export class FileDragAndDrop implements ITreeDragAndDrop<ExplorerItem> {
if (targetStat.children) { if (targetStat.children) {
const ignoreCase = hasToIgnoreCase(target.resource); const ignoreCase = hasToIgnoreCase(target.resource);
targetStat.children.forEach(child => { targetStat.children.forEach(child => {
targetNames.add(ignoreCase ? child.name : child.name.toLowerCase()); targetNames.add(ignoreCase ? child.name.toLowerCase() : child.name);
}); });
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册