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 14:10:15 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-01-20 14:10:15 +0300
commitf2988543c27ef69366a01b6be76528d685803eb2 (patch)
tree663badf4fc2c360a447f2f82b898a3bc3a267c82
parent685419d6bebfec1542ecbe8c3542baba88132604 (diff)
parent8e5b6320a6b240c266af1a93c6cee47d54e21757 (diff)
Merge branch 'blender-v2.92-release'
-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,