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:
authorAntonioya <blendergit@gmail.com>2018-10-05 09:59:16 +0300
committerAntonioya <blendergit@gmail.com>2018-10-05 09:59:33 +0300
commit8b05d38305c4af49848b41e307ceb3ed424f5fbc (patch)
treec6e936f183ab0d96259cd3d7d08f8088dfbb4f63 /source/blender/makesrna/intern/rna_gpencil.c
parentf36f0293210128666f29f0be5c2dfb38bb3421e2 (diff)
GP: Cleanup names and code
Diffstat (limited to 'source/blender/makesrna/intern/rna_gpencil.c')
-rw-r--r--source/blender/makesrna/intern/rna_gpencil.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/makesrna/intern/rna_gpencil.c b/source/blender/makesrna/intern/rna_gpencil.c
index 02419237a9e..adef80f43c7 100644
--- a/source/blender/makesrna/intern/rna_gpencil.c
+++ b/source/blender/makesrna/intern/rna_gpencil.c
@@ -73,10 +73,10 @@ static EnumPropertyItem rna_enum_gpencil_onion_modes_items[] = {
};
static const EnumPropertyItem rna_enum_gpencil_grid_axis_items[] = {
- {V3D_GP_GRID_AXIS_LOCK, "LOCK", 0, "Drawing Plane", "Use current drawing locked axis" },
- {V3D_GP_GRID_AXIS_X, "X", 0, "Y-Z", ""},
- {V3D_GP_GRID_AXIS_Y, "Y", 0, "X-Z", ""},
- {V3D_GP_GRID_AXIS_Z, "Z", 0, "X-Y", ""},
+ {GP_GRID_AXIS_LOCK, "LOCK", 0, "Drawing Plane", "Use current drawing locked axis" },
+ {GP_GRID_AXIS_X, "X", 0, "Y-Z", ""},
+ {GP_GRID_AXIS_Y, "Y", 0, "X-Z", ""},
+ {GP_GRID_AXIS_Z, "Z", 0, "X-Y", ""},
{0, NULL, 0, NULL, NULL}
};
#endif