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:
authorTon Roosendaal <ton@blender.org>2010-12-12 19:06:04 +0300
committerTon Roosendaal <ton@blender.org>2010-12-12 19:06:04 +0300
commitd47ef94d1ae1693eb8491543f2c1bfe25e02103f (patch)
tree28483caf721f23e4dc566b8e23ba6b4fec0cd73f /source/blender/editors/armature
parentee73c96e90e87dad9dab8b0bbeb0ceec50d035ad (diff)
Armature pose: removed the "Confirm" dialog for clearing
loc/rot/size properties. (same as object mode)
Diffstat (limited to 'source/blender/editors/armature')
-rw-r--r--source/blender/editors/armature/editarmature.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/source/blender/editors/armature/editarmature.c b/source/blender/editors/armature/editarmature.c
index 66af2f34f0f..a52b9a7d099 100644
--- a/source/blender/editors/armature/editarmature.c
+++ b/source/blender/editors/armature/editarmature.c
@@ -4902,7 +4902,6 @@ void POSE_OT_scale_clear(wmOperatorType *ot)
ot->idname= "POSE_OT_scale_clear";
/* api callbacks */
- ot->invoke = WM_operator_confirm;
ot->exec = pose_clear_scale_exec;
ot->poll = ED_operator_posemode;
@@ -4971,7 +4970,6 @@ void POSE_OT_loc_clear(wmOperatorType *ot)
ot->idname= "POSE_OT_loc_clear";
/* api callbacks */
- ot->invoke = WM_operator_confirm;
ot->exec = pose_clear_loc_exec;
ot->poll = ED_operator_posemode;
@@ -5128,7 +5126,6 @@ void POSE_OT_rot_clear(wmOperatorType *ot)
ot->idname= "POSE_OT_rot_clear";
/* api callbacks */
- ot->invoke = WM_operator_confirm;
ot->exec = pose_clear_rot_exec;
ot->poll = ED_operator_posemode;