From 2982987cb4a22a77904479802d788dcbae5f91a3 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Thu, 29 Apr 2010 09:05:09 -0600 Subject: [PATCH] Fix iPad output profile for comics --- 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 471d490b87..7141fe05b2 100644 --- a/src/calibre/customize/profiles.py +++ b/src/calibre/customize/profiles.py @@ -244,8 +244,8 @@ class iPadOutput(OutputProfile): name = 'iPad' short_name = 'ipad' - screen_size = (1024, 768) - comic_screen_size = (1024, 768) + screen_size = (768, 1024) + comic_screen_size = (768, 1024) dpi = 132.0 class SonyReaderOutput(OutputProfile):