Skip to content

Commit ecedb02

Browse files
Enable canSelectMany for workspace tree view (#307)
1 parent 39da0f5 commit ecedb02

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vscode-azureresourcegroups",
33
"displayName": "Azure Resources",
44
"description": "%azureResourceGroups.description%",
5-
"version": "0.5.4-alpha.0",
5+
"version": "0.5.4-alpha.1",
66
"publisher": "ms-azuretools",
77
"icon": "resources/resourceGroup.png",
88
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",

src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export async function activateInternal(context: vscode.ExtensionContext, perfSta
7575

7676
const workspaceTreeItem = new WorkspaceTreeItem();
7777
ext.workspaceTree = new AzExtTreeDataProvider(workspaceTreeItem, 'azureWorkspace.loadMore');
78-
context.subscriptions.push(ext.workspaceTreeView = vscode.window.createTreeView('azureWorkspace', { treeDataProvider: ext.workspaceTree }));
78+
context.subscriptions.push(ext.workspaceTreeView = vscode.window.createTreeView('azureWorkspace', { treeDataProvider: ext.workspaceTree, canSelectMany: true }));
7979
ext.workspaceTreeView.description = localize('local', 'Local');
8080

8181
context.subscriptions.push(ext.activityLogTreeItem = new ActivityLogTreeItem());

0 commit comments

Comments
 (0)