Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-07-21 01:35:22 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-07-21 01:35:22 +0400
commit930f2fa89848c60efd2a2083bad36ff7c98369dd (patch)
treeacde2a15c72565760555ef93980293d06c85d74c /source/blender/makesrna/intern/rna_linestyle.c
parente423e085f8e4b1a774c7a82ebad10e3a24acfe1a (diff)
Made a change to temporarily use ICON_BRUSH_DATA for the line style
datablock. A proper replacement is anticipated.
Diffstat (limited to 'source/blender/makesrna/intern/rna_linestyle.c')
-rw-r--r--source/blender/makesrna/intern/rna_linestyle.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/makesrna/intern/rna_linestyle.c b/source/blender/makesrna/intern/rna_linestyle.c
index d0cf19ca86a..f3846c797f3 100644
--- a/source/blender/makesrna/intern/rna_linestyle.c
+++ b/source/blender/makesrna/intern/rna_linestyle.c
@@ -379,6 +379,7 @@ static void rna_def_linestyle(BlenderRNA *brna)
srna= RNA_def_struct(brna, "FreestyleLineStyle", "ID");
RNA_def_struct_ui_text(srna, "Freestyle Line Style", "Freestyle line style, reusable by multiple line sets");
+ RNA_def_struct_ui_icon(srna, ICON_BRUSH_DATA); /* FIXME: use a proper icon */
prop= RNA_def_property(srna, "panel", PROP_ENUM, PROP_NONE);
RNA_def_property_enum_bitflag_sdna(prop, NULL, "panel");