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:
authorYevgeny Makarov <jenkm>2019-09-20 15:31:24 +0300
committerJacques Lucke <mail@jlucke.com>2019-09-20 15:31:24 +0300
commit7a83b64f7bd39934cf73dcca94598b610e829fb4 (patch)
tree6d5b9b5302e4824bea1bfd5af41d015eaf054880 /source/blender/editors/gpencil
parent60af4d207b7008fb0ed559ac4372ceba8a13406a (diff)
UI: Fix Capitalization
Differential Revision: https://developer.blender.org/D5716
Diffstat (limited to 'source/blender/editors/gpencil')
-rw-r--r--source/blender/editors/gpencil/gpencil_data.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/gpencil/gpencil_data.c b/source/blender/editors/gpencil/gpencil_data.c
index a072b6c4cf9..fdbbd899366 100644
--- a/source/blender/editors/gpencil/gpencil_data.c
+++ b/source/blender/editors/gpencil/gpencil_data.c
@@ -561,7 +561,7 @@ void GPENCIL_OT_layer_duplicate_object(wmOperatorType *ot)
};
/* identifiers */
- ot->name = "Duplicate Layer to new Object";
+ ot->name = "Duplicate Layer to New Object";
ot->idname = "GPENCIL_OT_layer_duplicate_object";
ot->description = "Make a copy of the active Grease Pencil layer to new object";
@@ -792,7 +792,7 @@ static int gp_frame_clean_loose_exec(bContext *C, wmOperator *op)
void GPENCIL_OT_frame_clean_loose(wmOperatorType *ot)
{
/* identifiers */
- ot->name = "Clean Loose points";
+ ot->name = "Clean Loose Points";
ot->idname = "GPENCIL_OT_frame_clean_loose";
ot->description = "Remove loose points";