Browse Source

larger thumbnail size for @2x screens

Artur Paikin 7 years ago
parent
commit
50b6f63b34
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/core/Core.js

+ 1 - 1
src/core/Core.js

@@ -446,7 +446,7 @@ class Uppy {
     if (Utils.isPreviewSupported(file.type) && !file.isRemote) {
       let previewPromise
       if (this.opts.thumbnailGeneration === true) {
-        previewPromise = Utils.createThumbnail(file, 200)
+        previewPromise = Utils.createThumbnail(file, 280)
       } else {
         previewPromise = Promise.resolve(URL.createObjectURL(file.data))
       }