mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-09 04:34:27 +02:00
Tablet Profile: Reduce screen size amount so SVG rasterization doesn't choke.
This commit is contained in:
parent
97c46ef41b
commit
4b262b3420
1 changed files with 2 additions and 2 deletions
|
|
@ -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'
|
||||
|
|
|
|||
Loading…
Reference in a new issue