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:
authorAntonio Vazquez <blendergit@gmail.com>2020-10-28 17:41:16 +0300
committerAntonio Vazquez <blendergit@gmail.com>2020-10-28 17:41:16 +0300
commitabdd0198c0f68728b96218a7b03f8452499a3564 (patch)
treed36c5a14c744620b9f002c973f48d63936babe8b /source/blender/editors/gpencil/gpencil_trace_ops.c
parenta5d237ac85c7ed67edad5e75f4cc3f8a67a30776 (diff)
GPencil: Change Trace tooltips
Diffstat (limited to 'source/blender/editors/gpencil/gpencil_trace_ops.c')
-rw-r--r--source/blender/editors/gpencil/gpencil_trace_ops.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/source/blender/editors/gpencil/gpencil_trace_ops.c b/source/blender/editors/gpencil/gpencil_trace_ops.c
index 0abc6193841..ae14830e3b7 100644
--- a/source/blender/editors/gpencil/gpencil_trace_ops.c
+++ b/source/blender/editors/gpencil/gpencil_trace_ops.c
@@ -407,7 +407,7 @@ void GPENCIL_OT_trace_image(wmOperatorType *ot)
};
static const EnumPropertyItem trace_modes[] = {
- {GPENCIL_TRACE_MODE_SINGLE, "SINGLE", 0, "Single", "Trace actual image"},
+ {GPENCIL_TRACE_MODE_SINGLE, "SINGLE", 0, "Single", "Trace the current frame of the image"},
{GPENCIL_TRACE_MODE_SEQUENCE, "SEQUENCE", 0, "Sequence", "Trace full sequence"},
{0, NULL, 0, NULL, NULL},
};
@@ -426,11 +426,12 @@ void GPENCIL_OT_trace_image(wmOperatorType *ot)
ot->flag = OPTYPE_REGISTER | OPTYPE_UNDO;
/* properties */
- prop = RNA_def_pointer_runtime(ot->srna,
- "target",
- &RNA_Object,
- "Target Object",
- "Target grease pencil object name. Leave empty for new object");
+ prop = RNA_def_pointer_runtime(
+ ot->srna,
+ "target",
+ &RNA_Object,
+ "Target Object",
+ "Target grease pencil object name. Leave empty to create a new object");
RNA_def_property_poll_runtime(prop, rna_GPencil_object_poll);
RNA_def_property_flag(prop, PROP_SKIP_SAVE);