Skip to content

Commit

Permalink
don't display upscale warning on kindle scribe
Browse files Browse the repository at this point in the history
  • Loading branch information
axu2 committed Jun 9, 2024
1 parent 44094bd commit 6738b70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kindlecomicconverter/comic2ebook.py
Original file line number Diff line number Diff line change
Expand Up @@ -906,7 +906,7 @@ def detectCorruption(tmppath, orgpath):
GUI.addMessage.emit('Source files are probably created by KCC. The second conversion will decrease quality.'
, 'warning', False)
GUI.addMessage.emit('', '', False)
if imageSmaller > imageNumber * 0.25 and not options.upscale and not options.stretch:
if imageSmaller > imageNumber * 0.25 and not options.upscale and not options.stretch and options.profile != 'KS':
print("WARNING: More than 25% of images are smaller than target device resolution. "
"Consider enabling stretching or upscaling to improve readability.")
if GUI:
Expand Down

0 comments on commit 6738b70

Please sign in to comment.