From 45a6986aa45ab0db1306a8f0ac901b8cf3af6f2e Mon Sep 17 00:00:00 2001 From: Paul Holden Date: Fri, 6 Dec 2024 13:03:53 +0000 Subject: [PATCH] MDL-83956 course: update spacer icon for category management tree. Prior to fd676913 the manage course categories tree element used the 'i/empty' icon as a fixed width spacer (fa-fw). However this icon is now shown as a square, which looks out of place here. Change to a different icon that maps to the same fixed width spacer in order to restore the previous behaviour. --- course/classes/management_renderer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/course/classes/management_renderer.php b/course/classes/management_renderer.php index 693ed9c99d4..8b39229725a 100644 --- a/course/classes/management_renderer.php +++ b/course/classes/management_renderer.php @@ -231,7 +231,7 @@ class core_course_management_renderer extends plugin_renderer_base { ); } else { $icon = $this->output->pix_icon( - 'i/empty', + 'i/navigationitem', '', 'moodle', array('class' => 'tree-icon'));