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:
authorSergey Sharybin <sergey.vfx@gmail.com>2016-11-10 19:18:57 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2016-11-10 19:19:23 +0300
commit80aae2b6feddfe44d47c7fc6541b6326527a44fd (patch)
tree56799f483ca9935c8a3d0b1a12a53860acd7c6fe /source/blender/editors/armature
parente316636fa84974fcfd989a8b4787535c4d250001 (diff)
Consider Numpad Enter in pose slide operators
It was annoying to only have regular Enter confirming input there.
Diffstat (limited to 'source/blender/editors/armature')
-rw-r--r--source/blender/editors/armature/pose_slide.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/armature/pose_slide.c b/source/blender/editors/armature/pose_slide.c
index cd0ea23e2d3..8e8345d34c9 100644
--- a/source/blender/editors/armature/pose_slide.c
+++ b/source/blender/editors/armature/pose_slide.c
@@ -685,6 +685,7 @@ static int pose_slide_modal(bContext *C, wmOperator *op, const wmEvent *event)
switch (event->type) {
case LEFTMOUSE: /* confirm */
case RETKEY:
+ case PADENTER:
{
/* return to normal cursor and header status */
ED_area_headerprint(pso->sa, NULL);