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:
authorWilliam Reynish <billrey@me.com>2019-02-26 11:33:21 +0300
committerWilliam Reynish <billrey@me.com>2019-02-26 11:33:21 +0300
commitc182bb3adb56aacc12cc2937671b323ced0af495 (patch)
treed1e5d9c84de63c91d0abc80276bd74fbd218d700 /source/blender/makesrna/intern/rna_gpencil.c
parent06961515e414cc9c0f9289a538a369fce1ef5c7d (diff)
Fix indentation issue introduced in rB54ffc4e19dc4
Diffstat (limited to 'source/blender/makesrna/intern/rna_gpencil.c')
-rw-r--r--source/blender/makesrna/intern/rna_gpencil.c4
1 files changed, 2 insertions, 2 deletions
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");