[Bf-blender-cvs] [774beb7] master: GPencil: Rename color name property to keep consistency in naming

Antonioya noreply at git.blender.org
Wed Aug 10 12:22:22 CEST 2016


Commit: 774beb7c3cf04cc42703a4a6ebb9a4836690b060
Author: Antonioya
Date:   Wed Aug 10 12:20:02 2016 +0200
Branches: master
https://developer.blender.org/rB774beb7c3cf04cc42703a4a6ebb9a4836690b060

GPencil: Rename color name property to keep consistency in naming

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

M	release/scripts/startup/bl_ui/properties_grease_pencil_common.py
M	source/blender/makesrna/intern/rna_gpencil.c

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

diff --git a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
index cabcd49..90cf410 100644
--- a/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
+++ b/release/scripts/startup/bl_ui/properties_grease_pencil_common.py
@@ -659,7 +659,7 @@ class GPENCIL_UL_palettecolor(UIList):
             row = split.row(align=True)
             row.prop(palcolor, "color", text="", emboss=palcolor.is_stroke_visible)
             row.prop(palcolor, "fill_color", text="", emboss=palcolor.is_fill_visible)
-            split.prop(palcolor, "info", text="", emboss=False)
+            split.prop(palcolor, "name", text="", emboss=False)
 
             row = layout.row(align=True)
             row.prop(palcolor, "lock", text="", emboss=False)
diff --git a/source/blender/makesrna/intern/rna_gpencil.c b/source/blender/makesrna/intern/rna_gpencil.c
index 80f4d5d..7424c19 100644
--- a/source/blender/makesrna/intern/rna_gpencil.c
+++ b/source/blender/makesrna/intern/rna_gpencil.c
@@ -1381,8 +1381,9 @@ static void rna_def_gpencil_palettecolor(BlenderRNA *brna)
 	RNA_def_property_update(prop, NC_GPENCIL | ND_DATA, "rna_GPencil_update");
 
 	/* Name */
-	prop = RNA_def_property(srna, "info", PROP_STRING, PROP_NONE);
-	RNA_def_property_ui_text(prop, "Info", "Color name");
+	prop = RNA_def_property(srna, "name", PROP_STRING, PROP_NONE);
+	RNA_def_property_string_sdna(prop, NULL, "info");
+	RNA_def_property_ui_text(prop, "Name", "Color name");
 	RNA_def_property_string_funcs(prop, NULL, NULL, "rna_GPencilPaletteColor_info_set");
 	RNA_def_struct_name_property(srna, prop);
 	RNA_def_property_update(prop, NC_GPENCIL | ND_DATA, "rna_GPencil_update");




More information about the Bf-blender-cvs mailing list