diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2019-03-18 10:07:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-18 10:07:25 +0100 |
commit | 6c856ac5882af16b7ce6c67f8f301c366f43e9f5 (patch) | |
tree | cd3f9eef3b506ab7e584671499435d6840b3756b | |
parent | 0930e3eceea9085bd7d48f4d239789db6823d55d (diff) | |
parent | 50a2ab8bc657e67e5951e1ff0fafa55ff5ded41c (diff) | |
download | nextcloud-server-6c856ac5882af16b7ce6c67f8f301c366f43e9f5.tar.gz nextcloud-server-6c856ac5882af16b7ce6c67f8f301c366f43e9f5.zip |
Merge pull request #14719 from nextcloud/fix/14639/fix_preview_size_trash
Use higher preview resolution in trashbin
-rw-r--r-- | apps/files_trashbin/lib/Controller/PreviewController.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files_trashbin/lib/Controller/PreviewController.php b/apps/files_trashbin/lib/Controller/PreviewController.php index f79e19a463e..ace3d10bf98 100644 --- a/apps/files_trashbin/lib/Controller/PreviewController.php +++ b/apps/files_trashbin/lib/Controller/PreviewController.php @@ -85,8 +85,8 @@ class PreviewController extends Controller { */ public function getPreview( int $fileId, - int $x = 44, - int $y = 44 + int $x = 128, + int $y = 128 ) { if ($x === 0 || $y === 0) { |