소스 검색

Only force show if not visible

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

+ 3
- 1
src/views/searchView.ts 파일 보기

@ -120,7 +120,9 @@ export class SearchView extends ViewBase {
},
results?: Promise<GitLog | undefined> | GitLog
) {
await this.show();
if (!this.visible) {
await this.show();
}
const searchQueryFn = this.getSearchQueryFn(
results || Container.git.getLogForSearch(repoPath, search, options),

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