From 72b92915e79ba8ccaadf14f1048924ed4ae6dfd3 Mon Sep 17 00:00:00 2001 From: Nicolas Stepien Date: Sun, 24 Mar 2013 18:02:17 +0100 Subject: [PATCH] Increase the dimensions limit for gif QR thumbnailing. #968 --- src/qr.coffee | 1 + 1 file changed, 1 insertion(+) diff --git a/src/qr.coffee b/src/qr.coffee index a6a0f6c60..9f06a95be 100644 --- a/src/qr.coffee +++ b/src/qr.coffee @@ -481,6 +481,7 @@ QR = # so we generate thumbnails `s` times bigger then expected # to avoid crappy resized quality. s = 90*2 + s *= 3 if @file.type is 'image/gif' # let them animate {height, width} = img if height < s or width < s @URL = fileURL if window.URL