Dont create borders around previews when scaling up is disabled

remotes/origin/ldap_group_count
Robin Appelman 12 years ago
parent 1a454f61ed
commit 578eb33c20
  1. 2
      lib/private/preview.php

@ -615,7 +615,7 @@ class Preview {
return;
}
if ($newXSize < $x || $newYSize < $y) {
if (($newXSize < $x || $newYSize < $y) && $scalingUp) {
if ($newXSize > $x) {
$cropX = floor(($newXSize - $x) * 0.5);
$image->crop($cropX, 0, $x, $newYSize);

Loading…
Cancel
Save