[Bf-blender-cvs] [c51eac24fea] master: UI: Correct icons of File Browser Link/Append ID filter settings

Julian Eisel noreply at git.blender.org
Fri Oct 22 23:55:41 CEST 2021


Commit: c51eac24fea8e010a8fed84f5f8787521067fb42
Author: Julian Eisel
Date:   Fri Oct 22 23:54:03 2021 +0200
Branches: master
https://developer.blender.org/rBc51eac24fea8e010a8fed84f5f8787521067fb42

UI: Correct icons of File Browser Link/Append ID filter settings

Wasn't using the same icons as usually used for these IDs, which can be
confusing. Corrected them to be consistent with other usages of these IDs.

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

M	source/blender/makesrna/intern/rna_ID.c

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

diff --git a/source/blender/makesrna/intern/rna_ID.c b/source/blender/makesrna/intern/rna_ID.c
index fe03d5245ba..be612a1602b 100644
--- a/source/blender/makesrna/intern/rna_ID.c
+++ b/source/blender/makesrna/intern/rna_ID.c
@@ -131,7 +131,7 @@ static const EnumPropertyItem rna_enum_override_library_property_operation_items
  */
 const struct IDFilterEnumPropertyItem rna_enum_id_type_filter_items[] = {
     /* Datablocks */
-    {FILTER_ID_AC, "filter_action", ICON_ANIM_DATA, "Actions", "Show Action data-blocks"},
+    {FILTER_ID_AC, "filter_action", ICON_ACTION, "Actions", "Show Action data-blocks"},
     {FILTER_ID_AR,
      "filter_armature",
      ICON_ARMATURE_DATA,
@@ -173,7 +173,7 @@ const struct IDFilterEnumPropertyItem rna_enum_id_type_filter_items[] = {
     {FILTER_ID_MB, "filter_metaball", ICON_META_DATA, "Metaballs", "Show Metaball data-blocks"},
     {FILTER_ID_MC,
      "filter_movie_clip",
-     ICON_TRACKER_DATA,
+     ICON_TRACKER,
      "Movie Clips",
      "Show Movie Clip data-blocks"},
     {FILTER_ID_ME, "filter_mesh", ICON_MESH_DATA, "Meshes", "Show Mesh data-blocks"},



More information about the Bf-blender-cvs mailing list