mirror of
git://github.com/kovidgoyal/calibre.git
synced 2025-12-27 13:04:46 +01:00
Tablet Profile: Reduce screen size amount so SVG rasterization doesn't choke.
This commit is contained in:
commit
5c14e6ea3b
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