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:
authorCampbell Barton <ideasman42@gmail.com>2021-01-20 13:46:48 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-01-20 13:47:52 +0300
commit8e5b6320a6b240c266af1a93c6cee47d54e21757 (patch)
tree0518873925473230d72c54a5c30c7114af73dff8
parentaee7d8f411e9416b82786a2c3a225d3c44f36fd3 (diff)
Add Object Tool: minor improvements to tool-tips
-rw-r--r--source/blender/editors/space_view3d/view3d_placement.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/source/blender/editors/space_view3d/view3d_placement.c b/source/blender/editors/space_view3d/view3d_placement.c
index 3ae09624f0c..c81072a1384 100644
--- a/source/blender/editors/space_view3d/view3d_placement.c
+++ b/source/blender/editors/space_view3d/view3d_placement.c
@@ -916,7 +916,7 @@ static void view3d_interactive_add_calc_plane(bContext *C,
}
if (!found_surface_or_normal) {
- /* Drawing into empty mspace, draw onto the plane most aligned to the view direction. */
+ /* Drawing into empty space, draw onto the plane most aligned to the view direction. */
mat3_align_axis_to_v3(r_matrix_orient, plane_axis, rv3d->viewinv[2]);
}
}
@@ -1623,12 +1623,13 @@ void VIEW3D_OT_interactive_add(struct wmOperatorType *ot)
"CURSOR_PLANE",
0,
"Cursor Plane",
- "Start placement using a point projected onto the selected axis at the 3D cursor position"},
+ "Start placement using a point projected onto the orientation axis "
+ "at the 3D cursor position"},
{PLACE_DEPTH_CURSOR_VIEW,
"CURSOR_VIEW",
0,
"Cursor View",
- "Start placement using the 3D cursor projected onto the view plane"},
+ "Start placement using a point projected onto the view plane at the 3D cursor position"},
{0, NULL, 0, NULL, NULL},
};
prop = RNA_def_property(ot->srna, "plane_depth", PROP_ENUM, PROP_NONE);
@@ -1642,7 +1643,7 @@ void VIEW3D_OT_interactive_add(struct wmOperatorType *ot)
"SURFACE",
ICON_SNAP_NORMAL,
"Surface",
- "Use the surface normal (the transform orientation as a fallback)"},
+ "Use the surface normal (using the transform orientation as a fallback)"},
{PLACE_ORIENT_DEFAULT,
"DEFAULT",
ICON_ORIENTATION_GLOBAL,