Skip to content

Commit

Permalink
explorer model: when merging ExplorerItems respect isSymbolicLink
Browse files Browse the repository at this point in the history
fixes #46536
  • Loading branch information
isidorn committed Mar 26, 2018
1 parent a9704b5 commit 2425a0e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions src/vs/workbench/parts/files/common/explorerModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ export class ExplorerItem {
local.isDirectory = disk.isDirectory;
local.mtime = disk.mtime;
local.isDirectoryResolved = disk.isDirectoryResolved;
local._isSymbolicLink = disk.isSymbolicLink;

// Merge Children if resolved
if (mergingDirectories && disk.isDirectoryResolved) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ export class SearchViewLocationUpdater implements IWorkbenchContribution {
configurationService.onDidChangeConfiguration(e => {
if (e.affectsConfiguration('search.location')) {
updateSearchViewLocation();

}
});

Expand Down

0 comments on commit 2425a0e

Please sign in to comment.