瀏覽代碼

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),

Loading…
取消
儲存