From 5efddc4347e36e2153608c6c60230b1737dd9164 Mon Sep 17 00:00:00 2001 From: Julian Eisel Date: Tue, 23 Nov 2021 15:22:06 +0100 Subject: Fix add-on Preferences using the .blend file icon, not the Blender logo Intention of the icon is to mark add-ons that are official/bundled. Doesn't make much sense to use the .blend file icon for that. It's arguable if the Blender logo should be used for this, but the file icon is definitely the wrong choice. --- release/scripts/startup/bl_ui/space_userpref.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'release') diff --git a/release/scripts/startup/bl_ui/space_userpref.py b/release/scripts/startup/bl_ui/space_userpref.py index 705f6fd788e..e7f93bddac3 100644 --- a/release/scripts/startup/bl_ui/space_userpref.py +++ b/release/scripts/startup/bl_ui/space_userpref.py @@ -1808,7 +1808,7 @@ class USERPREF_PT_addons(AddOnPanel, Panel): bl_options = {'HIDE_HEADER'} _support_icon_mapping = { - 'OFFICIAL': 'FILE_BLEND', + 'OFFICIAL': 'BLENDER', 'COMMUNITY': 'COMMUNITY', 'TESTING': 'EXPERIMENTAL', } -- cgit v1.2.3