diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2019-03-16 14:56:26 +0100 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2019-03-16 14:56:26 +0100 |
commit | 50a2ab8bc657e67e5951e1ff0fafa55ff5ded41c (patch) | |
tree | 0dc993069364bc16e20e400bfa7ec24d79da532f /apps/files_trashbin/lib | |
parent | c01019b5368d786e0603fc20ac240306a74ae9cb (diff) | |
download | nextcloud-server-50a2ab8bc657e67e5951e1ff0fafa55ff5ded41c.tar.gz nextcloud-server-50a2ab8bc657e67e5951e1ff0fafa55ff5ded41c.zip |
Use higher preview resolution in trashbin
For #14639
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'apps/files_trashbin/lib')
-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) { |