diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-11-06 11:45:19 +0100 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2018-11-06 11:45:19 +0100 |
commit | 98edf3612c90aaec6fa18169feb60aede9e7ea45 (patch) | |
tree | ad63882bc0fce5cf4bd08e1978e42e13d1fef974 /apps/files | |
parent | 5682d302c72ae42dfa16b068ad70fe312ed1ff9d (diff) | |
download | nextcloud-server-98edf3612c90aaec6fa18169feb60aede9e7ea45.tar.gz nextcloud-server-98edf3612c90aaec6fa18169feb60aede9e7ea45.zip |
Fix min trhumbnail size
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/files')
-rw-r--r-- | apps/files/js/filelist.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/js/filelist.js b/apps/files/js/filelist.js index b61b4ef8569..648a4f02641 100644 --- a/apps/files/js/filelist.js +++ b/apps/files/js/filelist.js @@ -1953,10 +1953,10 @@ generatePreviewUrl: function(urlSpec) { urlSpec = urlSpec || {}; if (!urlSpec.x) { - urlSpec.x = this.$table.data('preview-x') || 32; + urlSpec.x = this.$table.data('preview-x') || 250; } if (!urlSpec.y) { - urlSpec.y = this.$table.data('preview-y') || 32; + urlSpec.y = this.$table.data('preview-y') || 250; } urlSpec.x *= window.devicePixelRatio; urlSpec.y *= window.devicePixelRatio; |