fixed dumb typo

This commit is contained in:
Dan
2021-05-07 02:02:24 -04:00
parent 4d164f8d4d
commit 2d64059e6a

View File

@@ -87,7 +87,7 @@ class MangaReader:
#Modified above code to maintain height and scale width #Modified above code to maintain height and scale width
hpercent = (hsize / float(im.size[1])) hpercent = (hsize / float(im.size[1]))
widthsize = init((float(im.size[0] * float(hpercent)))) widthsize = int((float(im.size[0] * float(hpercent))))
im = im.resize((widthsize, hsize), Image.ANTIALIAS) im = im.resize((widthsize, hsize), Image.ANTIALIAS)
#convert to tkImage and update the on screen image. #convert to tkImage and update the on screen image.