Kindle DX screen sizes (width and height) were opposite.

This commit is contained in:
John Schember 2009-06-13 10:19:29 -04:00
parent 66b547979a
commit 8810cdeeba

View File

@ -242,9 +242,9 @@ class KindleDXOutput(OutputProfile):
description = _('This profile is intended for the Amazon Kindle DX.')
# Screen size is a best guess
screen_size = (1200, 824)
screen_size = (824, 1200)
dpi = 150.0
comic_screen_size = (1180, 800)
comic_screen_size = (800, 1180)
@classmethod
def tags_to_string(cls, tags):