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>2013-04-26 22:12:05 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-04-26 22:12:05 +0400
commit2e89f6350d4b28e0b930e4bb9aceda190944019e (patch)
treec8e2da8e90f2067827d6d897eacae2ea5bf10fbb /source/blender/windowmanager/intern/wm_operators.c
parent6d83322841f8d0b260f98cd19f56b5e2c3f1bc56 (diff)
edgeslide fixes/tweaks
* re-executing edgeslide was using initial mouse coords only. * allow negative smooth * allow more then 10 cuts in RNA limits.
Diffstat (limited to 'source/blender/windowmanager/intern/wm_operators.c')
-rw-r--r--source/blender/windowmanager/intern/wm_operators.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c
index 7cc78cab7f5..1f871312dfc 100644
--- a/source/blender/windowmanager/intern/wm_operators.c
+++ b/source/blender/windowmanager/intern/wm_operators.c
@@ -243,6 +243,9 @@ static int wm_macro_exec(bContext *C, wmOperator *op)
break; /* operator didn't finish, end macro */
}
}
+ else {
+ printf("%s: '%s' cant exec macro\n", __func__, opm->type->idname);
+ }
}
return wm_macro_end(op, retval);