Merge pull request #4195 from olekristensen/olekristensen-patch-highres-logo

Double the logo size for high res displays
This commit is contained in:
Lucas Bartholemy 2020-10-11 09:45:19 +02:00 committed by GitHub
commit 29c73f3a16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -50,12 +50,12 @@ class LogoImage
{
if ($maxWidth === null) {
// Will change in future!
$maxWidth = 300;
$maxWidth = 600;
}
if ($maxHeight === null) {
// Will change in future!
$maxHeight = 40;
$maxHeight = 80;
}
$file = self::getFile($maxWidth, $maxHeight);