소스 검색

Shows explorer view when showing results

main
Eric Amodio 6 년 전
부모
커밋
977957904a
1개의 변경된 파일3개의 추가작업 그리고 2개의 파일을 삭제
  1. +3
    -2
      src/views/resultsExplorer.ts

+ 3
- 2
src/views/resultsExplorer.ts 파일 보기

@ -114,7 +114,7 @@ export class ResultsExplorer implements TreeDataProvider {
this._onDidChangeTreeData.fire();
}
async showComparisonInResults(repoPath: string, ref1: string, ref2: string) {
showComparisonInResults(repoPath: string, ref1: string, ref2: string) {
this.addResults(new ComparisionResultsNode(repoPath, ref1, ref2, this));
this.showResults();
}
@ -147,7 +147,8 @@ export class ResultsExplorer implements TreeDataProvider {
this.showResults();
}
private showResults() {
private async showResults() {
await commands.executeCommand('workbench.view.explorer');
Messages.showResultExplorerInfoMessage();
setCommandContext(CommandContext.ResultsExplorer, true);
}

불러오는 중...
취소
저장