diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-09-30 15:47:34 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-09-30 15:47:34 +0200 |
commit | 1d8c10cf638fb954d1cc20c47ad46e697a18e9e4 (patch) | |
tree | 5936d721dc868e799594978133e0bc63905b6413 /lib/private/preview | |
parent | eeac6e2ab17bb9bfd94c51e8e026daa25ef3a033 (diff) | |
parent | 1051a3c6f5891e703a15225e12bbb9417755a860 (diff) | |
download | nextcloud-server-1d8c10cf638fb954d1cc20c47ad46e697a18e9e4.tar.gz nextcloud-server-1d8c10cf638fb954d1cc20c47ad46e697a18e9e4.zip |
Merge pull request #19468 from owncloud/fix-36-vs-32-previews
Change small thumbnails to 32 px
Diffstat (limited to 'lib/private/preview')
-rw-r--r-- | lib/private/preview/txt.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/preview/txt.php b/lib/private/preview/txt.php index 0bba570a8c9..2fdc86d9546 100644 --- a/lib/private/preview/txt.php +++ b/lib/private/preview/txt.php @@ -53,7 +53,7 @@ class TXT extends Provider { $lines = preg_split("/\r\n|\n|\r/", $content); - $fontSize = ($maxX) ? (int) ((5 / 36) * $maxX) : 5; //5px + $fontSize = ($maxX) ? (int) ((5 / 32) * $maxX) : 5; //5px $lineSize = ceil($fontSize * 1.25); $image = imagecreate($maxX, $maxY); |