Skip to content

Commit

Permalink
Add collapse all to extension (microsoft#1072)
Browse files Browse the repository at this point in the history
  • Loading branch information
nturinski authored Jul 22, 2019
1 parent 969a561 commit 33d68f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"icon": "resources/windows-azure-web-site.png",
"aiKey": "AIF-d9b70cd4-b9f9-4d70-929b-a071c400b217",
"engines": {
"vscode": "^1.26.0"
"vscode": "^1.31.0"
},
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export async function activateInternal(
context.subscriptions.push(ext.azureAccountTreeItem);
ext.tree = new AzExtTreeDataProvider(ext.azureAccountTreeItem, 'appService.LoadMore');

ext.treeView = vscode.window.createTreeView('azureAppService', { treeDataProvider: ext.tree });
ext.treeView = vscode.window.createTreeView('azureAppService', { treeDataProvider: ext.tree, showCollapseAll: true });
context.subscriptions.push(ext.treeView);

const fileEditor: FileEditor = new FileEditor();
Expand Down

0 comments on commit 33d68f3

Please sign in to comment.