[Bf-blender-cvs] [6cb0583] alembic_basic_io: Don't use an icon for the object path prop search.

Kévin Dietrich noreply at git.blender.org
Wed Jul 13 15:01:22 CEST 2016


Commit: 6cb0583f6f5541225b29531ff87878293d91ddf4
Author: Kévin Dietrich
Date:   Wed Jul 13 03:02:40 2016 +0200
Branches: alembic_basic_io
https://developer.blender.org/rB6cb0583f6f5541225b29531ff87878293d91ddf4

Don't use an icon for the object path prop search.

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

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

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

diff --git a/source/blender/makesrna/intern/rna_cachefile.c b/source/blender/makesrna/intern/rna_cachefile.c
index 56414df..703e3d0 100644
--- a/source/blender/makesrna/intern/rna_cachefile.c
+++ b/source/blender/makesrna/intern/rna_cachefile.c
@@ -77,6 +77,7 @@ static void rna_def_alembic_object_path(BlenderRNA *brna)
 	StructRNA *srna = RNA_def_struct(brna, "AlembicObjectPath", NULL);
 	RNA_def_struct_sdna(srna, "AlembicObjectPath");
 	RNA_def_struct_ui_text(srna, "Object Path", "Path of an object inside of an Alembic archive");
+	RNA_def_struct_ui_icon(srna, ICON_NONE);
 
 	PropertyRNA *prop = RNA_def_property(srna, "path", PROP_STRING, PROP_NONE);
 	RNA_def_property_ui_text(prop, "Path", "Object path");




More information about the Bf-blender-cvs mailing list