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:
authorNate Rupsis <nrupsis>2022-04-20 03:40:41 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2022-04-20 03:40:59 +0300
commit75ccfa63d0d0c553f797275e7ee4e282562522fe (patch)
tree3095f26f788bf075a9e9bbb12635c3d200d772bf /source/blender/editors/object/object_transform.cc
parent6a3c3c77b3ebdbcd44559bf91ea7d5cf3c5e4953 (diff)
UI: Fix typo in Apply Parent Inverse tooltip
There's a small typo in the tool tip for applying the Parent Inverse. This patch fixes that typo old: {F13010751} new: {F13010749} Reviewed By: Blendify Maniphest Tasks: T97437 Differential Revision: https://developer.blender.org/D14693
Diffstat (limited to 'source/blender/editors/object/object_transform.cc')
-rw-r--r--source/blender/editors/object/object_transform.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/object/object_transform.cc b/source/blender/editors/object/object_transform.cc
index 798f34e26d9..4943488385e 100644
--- a/source/blender/editors/object/object_transform.cc
+++ b/source/blender/editors/object/object_transform.cc
@@ -1191,7 +1191,7 @@ void OBJECT_OT_parent_inverse_apply(wmOperatorType *ot)
{
/* identifiers */
ot->name = "Apply Parent Inverse";
- ot->description = "Apply the object's parent inverse to the its data";
+ ot->description = "Apply the object's parent inverse to its data";
ot->idname = "OBJECT_OT_parent_inverse_apply";
/* api callbacks */