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

This commit is contained in:
Kovid Goyal 2011-10-03 18:59:41 -06:00
commit 5c14e6ea3b

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'