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>2015-10-16 13:57:59 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-10-16 13:57:59 +0300
commit85f3b21cc8c03c1fa21f85b98cd73b7a4cab1434 (patch)
tree2030a80f4513007e632a2efc57e75b7f2f981f2a /source/blender/editors/mesh/editmesh_knife.c
parent7dc80097a4cd4a651ae953e7927ca39a26897a2f (diff)
error in last commit
Diffstat (limited to 'source/blender/editors/mesh/editmesh_knife.c')
-rw-r--r--source/blender/editors/mesh/editmesh_knife.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/mesh/editmesh_knife.c b/source/blender/editors/mesh/editmesh_knife.c
index 2639d328478..cdbb62e8526 100644
--- a/source/blender/editors/mesh/editmesh_knife.c
+++ b/source/blender/editors/mesh/editmesh_knife.c
@@ -2128,7 +2128,7 @@ static bool knife_snap_angle(KnifeTool_OpData *kcd)
{
const float dvec_ref[2] = {0.0f, 1.0f};
float dvec[2], dvec_snap[2];
- float snap_step = DEG2RADF(5);
+ float snap_step = DEG2RADF(45);
sub_v2_v2v2(dvec, kcd->curr.mval, kcd->prev.mval);
if (is_zero_v2(dvec)) {