From 8a977030fcb76a1495cad6c24453c31b1b744b45 Mon Sep 17 00:00:00 2001 From: Bas Brands Date: Tue, 7 Apr 2020 16:49:21 +0200 Subject: [PATCH] MDL-68270 core_output: prevent blurring of navbar logo --- lib/outputrenderers.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/outputrenderers.php b/lib/outputrenderers.php index 7b705a91be8..6287e564110 100644 --- a/lib/outputrenderers.php +++ b/lib/outputrenderers.php @@ -357,7 +357,7 @@ class renderer_base { * @param int $maxheight The maximum height, or null when the maximum height does not matter. * @return moodle_url|false */ - public function get_compact_logo_url($maxwidth = 100, $maxheight = 100) { + public function get_compact_logo_url($maxwidth = 300, $maxheight = 300) { global $CFG; $logo = get_config('core_admin', 'logocompact'); if (empty($logo)) {