We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b74b772 commit bd77b89Copy full SHA for bd77b89
packages/file-tree-next/src/browser/file-tree-contribution.ts
@@ -444,13 +444,6 @@ export class FileTreeContribution
444
445
commands.registerCommand(FILE_COMMANDS.LOCATION, {
446
execute: (locationUri?: URI) => {
447
- const handler = this.mainLayoutService.getTabbarHandler(EXPLORER_CONTAINER_ID);
448
- if (handler && !handler.isVisible) {
449
- handler.activate();
450
- setTimeout(() => {
451
- handler.setCollapsed(RESOURCE_VIEW_ID, false);
452
- }, 200);
453
- }
454
if (locationUri) {
455
this.revealFile(locationUri);
456
} else if (this.fileTreeModelService.selectedFiles && this.fileTreeModelService.selectedFiles.length > 0) {
0 commit comments