Fix #1914207 [Tag Browser: Average rating tooltip shows on hierarchical search](https://bugs.launchpad.net/calibre/+bug/1914207)
This commit is contained in:
Kovid Goyal 2021-02-02 16:28:32 +05:30
commit 16f2e83b5c
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -216,7 +216,7 @@ class TagTreeItem(object): # {{{
ar = self.average_rating
if ar:
tt.append(_('Average rating for books in this category: %.1f') % ar)
elif self.type == self.TAG and ar is not None:
elif self.type == self.TAG and ar is not None and self.tag.category != 'search':
tt.append(_('Books in this category are unrated'))
if self.type == self.TAG and self.tag.category == 'search':
tt.append(_('Search expression:') + ' ' + self.tag.search_expression)