Ticket #3206: not-all-images-are-scaled.patch
File not-all-images-are-scaled.patch, 532 bytes (added by godiard, 12 years ago) |
---|
-
server.py
diff --git a/server.py b/server.py index f42fa28..5a35766 100755
a b class WPHTMLWriter(mwlib.htmlwriter.HTMLWriter): 318 318 is_svg = re.match(r'.*\.svg$', obj.target, re.IGNORECASE) 319 319 is_thumb = obj.thumb or obj.frame or (self.gallerylevel > 0) 320 320 321 if not is_svg and ((width andheight) or is_thumb):321 if not is_svg and ((width or height) or is_thumb): 322 322 max_length = max(width, height) 323 323 if obj.thumb: 324 324 max_length = 180