[Bf-blender-cvs] [75ccfa63d0d] master: UI: Fix typo in Apply Parent Inverse tooltip

Nate Rupsis noreply at git.blender.org
Wed Apr 20 02:41:05 CEST 2022


Commit: 75ccfa63d0d0c553f797275e7ee4e282562522fe
Author: Nate Rupsis
Date:   Tue Apr 19 20:40:41 2022 -0400
Branches: master
https://developer.blender.org/rB75ccfa63d0d0c553f797275e7ee4e282562522fe

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

===================================================================

M	source/blender/editors/object/object_transform.cc

===================================================================

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 */



More information about the Bf-blender-cvs mailing list