ソースを参照

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);
}

読み込み中…
キャンセル
保存