[Bf-blender-cvs] [d5d2a28] GPencil_EditStrokes: GPencil RNA: Add icons for the toggle settings

Joshua Leung noreply at git.blender.org
Sun Oct 12 13:53:59 CEST 2014


Commit: d5d2a289db3183b84232fd3491be6694e2ec3dab
Author: Joshua Leung
Date:   Sun Oct 12 19:20:26 2014 +1300
Branches: GPencil_EditStrokes
https://developer.blender.org/rBd5d2a289db3183b84232fd3491be6694e2ec3dab

GPencil RNA: Add icons for the toggle settings

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

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

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

diff --git a/source/blender/makesrna/intern/rna_gpencil.c b/source/blender/makesrna/intern/rna_gpencil.c
index 9a474a1..8dce640 100644
--- a/source/blender/makesrna/intern/rna_gpencil.c
+++ b/source/blender/makesrna/intern/rna_gpencil.c
@@ -603,11 +603,13 @@ static void rna_def_gpencil_layer(BlenderRNA *brna)
 	/* Flags */
 	prop = RNA_def_property(srna, "hide", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", GP_LAYER_HIDE);
+	RNA_def_property_ui_icon(prop, ICON_RESTRICT_VIEW_OFF, 1);
 	RNA_def_property_ui_text(prop, "Hide", "Set layer Visibility");
 	RNA_def_property_update(prop, NC_GPENCIL | ND_DATA, "rna_GPencil_update");
 	
 	prop = RNA_def_property(srna, "lock", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", GP_LAYER_LOCKED);
+	RNA_def_property_ui_icon(prop, ICON_UNLOCKED, 1);
 	RNA_def_property_ui_text(prop, "Locked", "Protect layer from further editing and/or frame changes");
 	RNA_def_property_update(prop, NC_GPENCIL | ND_DATA, NULL);




More information about the Bf-blender-cvs mailing list