mirror of
https://github.com/Microsoft/vscode
synced 2024-10-30 13:31:48 +00:00
Don't allow remote explorer views to move out of the container (#108105)
Fixes #108008
This commit is contained in:
parent
13268f921e
commit
922eae6d61
1 changed files with 1 additions and 1 deletions
|
@ -488,7 +488,7 @@ class ViewsExtensionHandler implements IWorkbenchContribution {
|
|||
containerIcon: icon || viewContainer?.icon,
|
||||
containerTitle: item.contextualTitle || viewContainer?.name,
|
||||
canToggleVisibility: true,
|
||||
canMoveView: true,
|
||||
canMoveView: viewContainer?.id !== REMOTE,
|
||||
treeView: type === ViewType.Tree ? this.instantiationService.createInstance(CustomTreeView, item.id, item.name) : undefined,
|
||||
collapsed: this.showCollapsed(container) || initialVisibility === InitialVisibility.Collapsed,
|
||||
order: order,
|
||||
|
|
Loading…
Reference in a new issue