[Bf-blender-cvs] [6d7dc2265f1] master: UI: Rephrase Tooltip to Avoid 2nd Person

Hans Goudey noreply at git.blender.org
Wed May 20 21:53:55 CEST 2020


Commit: 6d7dc2265f1b3d95f6c442d5fe211058a5f56a58
Author: Hans Goudey
Date:   Wed May 20 15:53:45 2020 -0400
Branches: master
https://developer.blender.org/rB6d7dc2265f1b3d95f6c442d5fe211058a5f56a58

UI: Rephrase Tooltip to Avoid 2nd Person

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

M	source/blender/makesrna/intern/rna_userdef.c

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

diff --git a/source/blender/makesrna/intern/rna_userdef.c b/source/blender/makesrna/intern/rna_userdef.c
index 00d3189dcbe..aa138517209 100644
--- a/source/blender/makesrna/intern/rna_userdef.c
+++ b/source/blender/makesrna/intern/rna_userdef.c
@@ -5798,8 +5798,9 @@ static void rna_def_userdef_input(BlenderRNA *brna)
 
   prop = RNA_def_property(srna, "ndof_fly_helicopter", PROP_BOOLEAN, PROP_NONE);
   RNA_def_property_boolean_sdna(prop, NULL, "ndof_flag", NDOF_FLY_HELICOPTER);
-  RNA_def_property_ui_text(
-      prop, "Helicopter Mode", "Device up/down directly controls your Z position");
+  RNA_def_property_ui_text(prop,
+                           "Helicopter Mode",
+                           "Device up/down directly controls the Z position of the 3D viewport");
 
   /* let Python know whether NDOF is enabled */
   prop = RNA_def_boolean(srna, "use_ndof", true, "", "");



More information about the Bf-blender-cvs mailing list