mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Change quickview to not sort search results. They are sorted in QV's table.
This commit is contained in:
parent
9ec829f46c
commit
b00e3b0a3e
@ -215,7 +215,8 @@ class Quickview(QDialog, Ui_Quickview):
|
||||
sv = selected_item
|
||||
sv = sv.replace('"', r'\"')
|
||||
self.last_search = self.current_key+':"=' + sv + '"'
|
||||
books = self.db.search(self.last_search, return_matches=True)
|
||||
books = self.db.search(self.last_search, return_matches=True,
|
||||
sort_results=False)
|
||||
|
||||
self.books_table.setRowCount(len(books))
|
||||
self.books_label.setText(_('Books with selected item "{0}": {1}').
|
||||
|
Loading…
x
Reference in New Issue
Block a user