mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 11:14:02 +02:00
Fix #5843 (Book covers not displaying when in device view)
This commit is contained in:
parent
9e31b075da
commit
6db976e5aa
1 changed files with 1 additions and 1 deletions
|
|
@ -109,7 +109,7 @@ def sizeHint(self):
|
|||
|
||||
def show_data(self, data):
|
||||
self.animation.stop()
|
||||
if data.get('id', None) == self.data.get('id', None):
|
||||
if data.get('id', True) == self.data.get('id', False):
|
||||
return
|
||||
self.data = {'id':data.get('id', None)}
|
||||
if data.has_key('cover'):
|
||||
|
|
|
|||
Loading…
Reference in a new issue