Tablet Profile: Reduce screen size amount so SVG rasterization doesn't choke.

This commit is contained in:
John Schember 2011-10-03 20:43:03 -04:00
parent 97c46ef41b
commit 4b262b3420

View File

@ -437,8 +437,8 @@ class TabletOutput(iPadOutput):
short_name = 'tablet' short_name = 'tablet'
description = _('Intended for generic tablet devices, does no resizing of images') description = _('Intended for generic tablet devices, does no resizing of images')
screen_size = (sys.maxint, sys.maxint) screen_size = (10000, 10000)
comic_screen_size = (sys.maxint, sys.maxint) comic_screen_size = (10000, 10000)
class SamsungGalaxy(TabletOutput): class SamsungGalaxy(TabletOutput):
name = 'Samsung Galaxy' name = 'Samsung Galaxy'