mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 04:03:52 +02:00
Store: Fix no books found dialog showing too often.
This commit is contained in:
parent
d4de706fc8
commit
70da6dd852
1 changed files with 1 additions and 1 deletions
|
|
@ -206,7 +206,7 @@ def get_results(self):
|
|||
if res:
|
||||
self.results_view.model().add_result(res, store_plugin)
|
||||
|
||||
if not self.results_view.model().has_results():
|
||||
if not self.search_pool.threads_running() and not self.results_view.model().has_results():
|
||||
info_dialog(self, _('No matches'), _('Couldn\'t find any books matching your query.'), show=True, show_copy_button=False)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue