From 38bf9adba33a7a15b3aee5e6c99e13727a4afc46 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 23 Oct 2014 08:08:28 +0530 Subject: [PATCH] Fix book cover thumbnails too small when sending books to the new Kindle Voyage --- src/calibre/devices/kindle/driver.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/calibre/devices/kindle/driver.py b/src/calibre/devices/kindle/driver.py index 26bc5e49eb..f3735f9819 100644 --- a/src/calibre/devices/kindle/driver.py +++ b/src/calibre/devices/kindle/driver.py @@ -354,8 +354,9 @@ class KINDLE2(KINDLE): EXTRA_CUSTOMIZATION_CHOICES = {OPT_APNX_METHOD:{'fast', 'accurate', 'pagebreak'}} # x330 on the PaperWhite - THUMBNAIL_HEIGHT = 330 # x262 on the Touch. Doesn't choke on x330, though. + # x470 on the Voyage, checked that it works on PW, dont have Touch anymore + THUMBNAIL_HEIGHT = 470 @classmethod def migrate_extra_customization(cls, vals):