From 4b262b342086869f0aba0f844b13032a251bd5f8 Mon Sep 17 00:00:00 2001 From: John Schember Date: Mon, 3 Oct 2011 20:43:03 -0400 Subject: [PATCH] Tablet Profile: Reduce screen size amount so SVG rasterization doesn't choke. --- 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 1de42bf3db..dc4ce01bf6 100644 --- a/src/calibre/customize/profiles.py +++ b/src/calibre/customize/profiles.py @@ -437,8 +437,8 @@ class TabletOutput(iPadOutput): short_name = 'tablet' description = _('Intended for generic tablet devices, does no resizing of images') - screen_size = (sys.maxint, sys.maxint) - comic_screen_size = (sys.maxint, sys.maxint) + screen_size = (10000, 10000) + comic_screen_size = (10000, 10000) class SamsungGalaxy(TabletOutput): name = 'Samsung Galaxy'