From 930f2fa89848c60efd2a2083bad36ff7c98369dd Mon Sep 17 00:00:00 2001 From: Tamito Kajiyama Date: Tue, 20 Jul 2010 21:35:22 +0000 Subject: [PATCH] Made a change to temporarily use ICON_BRUSH_DATA for the line style datablock. A proper replacement is anticipated. --- source/blender/makesrna/intern/rna_linestyle.c | 1 + 1 file changed, 1 insertion(+) 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");