[Bf-blender-cvs] [cc1c7499a24] draw-deferred-compilation-experiment: UI: Fix typo in Apply Parent Inverse tooltip

Nate Rupsis noreply at git.blender.org
Thu Apr 21 11:14:08 CEST 2022


Commit: cc1c7499a2414cb74827bd20e4dd686f716adb18
Author: Nate Rupsis
Date:   Tue Apr 19 20:40:41 2022 -0400
Branches: draw-deferred-compilation-experiment
https://developer.blender.org/rBcc1c7499a2414cb74827bd20e4dd686f716adb18

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