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:
authorAntony Riakiotakis <kalast@gmail.com>2012-04-24 01:04:26 +0400
committerAntony Riakiotakis <kalast@gmail.com>2012-04-24 01:04:26 +0400
commit7cc4353dffb11aa1b323887e0550eccf1de2ca37 (patch)
tree5658afbbd02133a9b86510eda4098e608f6ed0f2 /source/blender/editors/mesh/editmesh_knife.c
parent8b476d0275be15fbe18c9a0589e81a996e952496 (diff)
Update knife tool header to reflect that spacebar can be used for confirm too.
Diffstat (limited to 'source/blender/editors/mesh/editmesh_knife.c')
-rw-r--r--source/blender/editors/mesh/editmesh_knife.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/mesh/editmesh_knife.c b/source/blender/editors/mesh/editmesh_knife.c
index 13425ad8b9c..0ace06b1a1a 100644
--- a/source/blender/editors/mesh/editmesh_knife.c
+++ b/source/blender/editors/mesh/editmesh_knife.c
@@ -205,10 +205,10 @@ static void knife_input_ray_cast(KnifeTool_OpData *kcd, const int mval_i[2],
static void knife_update_header(bContext *C, KnifeTool_OpData *kcd)
{
- #define HEADER_LENGTH 180
+ #define HEADER_LENGTH 190
char header[HEADER_LENGTH];
- BLI_snprintf(header, HEADER_LENGTH, "LMB: define cut lines, Return: confirm, Esc or RMB: cancel, E: new cut, Ctrl: midpoint snap (%s), "
+ BLI_snprintf(header, HEADER_LENGTH, "LMB: define cut lines, Return/Spacebar: confirm, Esc or RMB: cancel, E: new cut, Ctrl: midpoint snap (%s), "
"Shift: ignore snap (%s), C: angle constrain (%s), Z: cut through (%s)",
kcd->snap_midpoints ? "On" : "Off",
kcd->ignore_edge_snapping ? "On" : "Off",