mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Extra robustness
This commit is contained in:
parent
170c7f91a6
commit
dbdf7e91b2
@ -1576,8 +1576,10 @@ class DeviceBooksModel(BooksModel): # {{{
|
|||||||
return (_('Waiting for metadata to be updated'))
|
return (_('Waiting for metadata to be updated'))
|
||||||
if self.is_row_marked_for_deletion(row):
|
if self.is_row_marked_for_deletion(row):
|
||||||
return (_('Marked for deletion'))
|
return (_('Marked for deletion'))
|
||||||
if cname in ['title', 'authors'] or (cname == 'collections' and
|
if cname in ['title', 'authors'] or (
|
||||||
self.db.supports_collections()):
|
cname == 'collections' and (
|
||||||
|
callable(getattr(self.db, 'supports_collections', None)) and self.db.supports_collections())
|
||||||
|
):
|
||||||
return (_("Double click to <b>edit</b> me<br><br>"))
|
return (_("Double click to <b>edit</b> me<br><br>"))
|
||||||
elif role == Qt.DecorationRole and cname == 'inlibrary':
|
elif role == Qt.DecorationRole and cname == 'inlibrary':
|
||||||
if hasattr(self.db[self.map[row]], 'in_library_waiting'):
|
if hasattr(self.db[self.map[row]], 'in_library_waiting'):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user