From 8810cdeeba04b5a71b1e8d4dc614ccc12bdcb54d Mon Sep 17 00:00:00 2001 From: John Schember Date: Sat, 13 Jun 2009 10:19:29 -0400 Subject: [PATCH] Kindle DX screen sizes (width and height) were opposite. --- src/calibre/customize/profiles.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/calibre/customize/profiles.py b/src/calibre/customize/profiles.py index 3844ab43a5..cc45855c9a 100644 --- a/src/calibre/customize/profiles.py +++ b/src/calibre/customize/profiles.py @@ -242,9 +242,9 @@ class KindleDXOutput(OutputProfile): description = _('This profile is intended for the Amazon Kindle DX.') # Screen size is a best guess - screen_size = (1200, 824) + screen_size = (824, 1200) dpi = 150.0 - comic_screen_size = (1180, 800) + comic_screen_size = (800, 1180) @classmethod def tags_to_string(cls, tags):