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:
authorJoshua Leung <aligorith@gmail.com>2009-09-23 11:28:26 +0400
committerJoshua Leung <aligorith@gmail.com>2009-09-23 11:28:26 +0400
commit9e110a6d00e791b7fa7cc4ba559b68acac029c5b (patch)
treed984890eb9f4a02c58385651b104d1bb0cf10d75 /source/blender/editors/armature/poseSlide.c
parentefa757fd8d57891f6feb3fc85fdd3e2ab88e7623 (diff)
A few quick bugfixes:
* Vertex Groups list now has a more normal length (2 rows by default) * Copy vertex groups button now has an icon * Pose Sliding tools now allow events which it doesn't process to pass through (i.e. zooming the view now works, and also moving around using the numpad works too)
Diffstat (limited to 'source/blender/editors/armature/poseSlide.c')
-rw-r--r--source/blender/editors/armature/poseSlide.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/source/blender/editors/armature/poseSlide.c b/source/blender/editors/armature/poseSlide.c
index 24bd2ebe5ad..7c63954767f 100644
--- a/source/blender/editors/armature/poseSlide.c
+++ b/source/blender/editors/armature/poseSlide.c
@@ -721,6 +721,10 @@ static int pose_slide_modal (bContext *C, wmOperator *op, wmEvent *evt)
pose_slide_apply(C, op, pso);
}
break;
+
+ default: /* unhandled event (maybe it was some view manip? */
+ /* allow to pass through */
+ return OPERATOR_RUNNING_MODAL|OPERATOR_PASS_THROUGH;
}
/* still running... */