From d167240f70ebc7b2e89efecec6c499886216844b Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 2 Apr 2024 07:57:19 +0530 Subject: [PATCH] Add some text explaining that FTS shows only a single match per book --- src/calibre/gui2/fts/search.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/calibre/gui2/fts/search.py b/src/calibre/gui2/fts/search.py index d2689c031b..a186758e4e 100644 --- a/src/calibre/gui2/fts/search.py +++ b/src/calibre/gui2/fts/search.py @@ -727,6 +727,7 @@ class ResultDetails(QWidget): text += '

{2}\xa0{0}'.format( _('Un-index'), _('This book has been deleted from the library but is still present in the' ' full text search index. Remove it.'), ict.format('trash.png')) + text += '

' + _('This book may have more than one match, only a single match per book is shown.') self.book_info.setHtml(text) def render_results(self, results, individual_match=None):