[Bf-blender-cvs] [8897e0aa8f4] master: Fix add-on Preferences using the .blend file icon, not the Blender logo

Julian Eisel noreply at git.blender.org
Tue Nov 23 15:30:33 CET 2021


Commit: 8897e0aa8f4723aac78be6c97ec8df5a44f58d3e
Author: Julian Eisel
Date:   Tue Nov 23 15:22:06 2021 +0100
Branches: master
https://developer.blender.org/rB8897e0aa8f4723aac78be6c97ec8df5a44f58d3e

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.

===================================================================

M	release/scripts/startup/bl_ui/space_userpref.py

===================================================================

diff --git a/release/scripts/startup/bl_ui/space_userpref.py b/release/scripts/startup/bl_ui/space_userpref.py
index 5032256e4d1..92d1e8e2586 100644
--- a/release/scripts/startup/bl_ui/space_userpref.py
+++ b/release/scripts/startup/bl_ui/space_userpref.py
@@ -1818,7 +1818,7 @@ class USERPREF_PT_addons(AddOnPanel, Panel):
     bl_options = {'HIDE_HEADER'}
 
     _support_icon_mapping = {
-        'OFFICIAL': 'FILE_BLEND',
+        'OFFICIAL': 'BLENDER',
         'COMMUNITY': 'COMMUNITY',
         'TESTING': 'EXPERIMENTAL',
     }



More information about the Bf-blender-cvs mailing list