Browse Source

Fixes broken refresh in custom view

main
Eric Amodio 7 years ago
parent
commit
447e065e5b
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/views/explorerCommands.ts

+ 2
- 2
src/views/explorerCommands.ts View File

@ -24,8 +24,8 @@ export class ExplorerCommands extends Disposable {
commands.registerCommand('gitlens.gitExplorer.setFilesLayoutToTree', () => this.setFilesLayout(GitExplorerFilesLayout.Tree), this);
commands.registerCommand('gitlens.gitExplorer.switchToHistoryView', () => this.explorer.switchTo(GitExplorerView.History), this);
commands.registerCommand('gitlens.gitExplorer.switchToRepositoryView', () => this.explorer.switchTo(GitExplorerView.Repository), this);
commands.registerCommand('gitlens.gitExplorer.refresh', this.explorer.refresh, this);
commands.registerCommand('gitlens.gitExplorer.refreshNode', this.explorer.refreshNode, this);
commands.registerCommand('gitlens.gitExplorer.refresh', this.explorer.refresh, this.explorer);
commands.registerCommand('gitlens.gitExplorer.refreshNode', this.explorer.refreshNode, this.explorer);
commands.registerCommand('gitlens.gitExplorer.openChanges', this.openChanges, this);
commands.registerCommand('gitlens.gitExplorer.openChangesWithWorking', this.openChangesWithWorking, this);
commands.registerCommand('gitlens.gitExplorer.openFile', this.openFile, this);

Loading…
Cancel
Save