[Bf-blender-cvs] [c182bb3adb5] master: Fix indentation issue introduced in rB54ffc4e19dc4

William Reynish noreply at git.blender.org
Tue Feb 26 09:33:24 CET 2019


Commit: c182bb3adb56aacc12cc2937671b323ced0af495
Author: William Reynish
Date:   Tue Feb 26 09:33:21 2019 +0100
Branches: master
https://developer.blender.org/rBc182bb3adb56aacc12cc2937671b323ced0af495

Fix indentation issue introduced in rB54ffc4e19dc4

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

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 0775af67d84..7b68c9bd203 100644
--- a/source/blender/makesrna/intern/rna_gpencil.c
+++ b/source/blender/makesrna/intern/rna_gpencil.c
@@ -1473,7 +1473,7 @@ static void rna_def_gpencil_data(BlenderRNA *brna)
 	static float onion_dft1[3] = { 0.145098f, 0.419608f, 0.137255f }; /* green */
 	static float onion_dft2[3] = { 0.125490f, 0.082353f, 0.529412f }; /* blue */
 
-		static const EnumPropertyItem stroke_thickness_items[] = {
+	static const EnumPropertyItem stroke_thickness_items[] = {
 		{0, "WORLDSPACE", 0, "World Space", "Set stroke thickness relative to the world space"},
 		{GP_DATA_STROKE_KEEPTHICKNESS, "SCREENSPACE", 0, "Screen Space", "Set stroke thickness relative to the screen space"},
 		{0, NULL, 0, NULL, NULL},
@@ -1552,7 +1552,7 @@ static void rna_def_gpencil_data(BlenderRNA *brna)
 		"and smaller red dot (end) points");
 	RNA_def_property_update(prop, NC_GPENCIL | ND_DATA, "rna_GPencil_update");
 
-    prop = RNA_def_property(srna, "stroke_thickness_space", PROP_ENUM, PROP_NONE); /* as an enum */
+	prop = RNA_def_property(srna, "stroke_thickness_space", PROP_ENUM, PROP_NONE); /* as an enum */
 	RNA_def_property_enum_bitflag_sdna(prop, NULL, "flag");
 	RNA_def_property_enum_items(prop, stroke_thickness_items);
 	RNA_def_property_ui_text(prop, "Stroke Thickness", "Set stroke thickness in screen space or world space");



More information about the Bf-blender-cvs mailing list