From e3fb3ce015497be871baa6d51aa4aa77fc53e1dc Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Tue, 22 Feb 2022 18:37:49 +0530 Subject: [PATCH] DRYer --- src/calibre/customize/profiles.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/calibre/customize/profiles.py b/src/calibre/customize/profiles.py index a0db7f41e1..7bd8976971 100644 --- a/src/calibre/customize/profiles.py +++ b/src/calibre/customize/profiles.py @@ -454,7 +454,7 @@ class TabletOutput(iPadOutput): description = _('Intended for generic tablet devices, does no resizing of images') screen_size = (10000, 10000) - comic_screen_size = (10000, 10000) + comic_screen_size = screen_size class SamsungGalaxy(TabletOutput): @@ -561,7 +561,7 @@ class GenericEinkHD(GenericEink): description = _('Suitable for use with any modern high resolution e-ink device') screen_size = (10000, 10000) - comic_screen_size = (10000, 10000) + comic_screen_size = screen_size class JetBook5Output(OutputProfile):