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
path: root/source
diff options
context:
space:
mode:
authorJoshua Leung <aligorith@gmail.com>2012-04-29 17:58:43 +0400
committerJoshua Leung <aligorith@gmail.com>2012-04-29 17:58:43 +0400
commitbdd014bbd444d8765805ea2b6f4706ca296b86fe (patch)
tree219d56d39adf16930dd1b814b890d27e3d9d4332 /source
parentd30ee954f8ba46893b9f2ba9ba314cdb1ef34c80 (diff)
Bugfix [#31128] Vertex Slide can't be aborted with ESC key
Diffstat (limited to 'source')
-rw-r--r--source/blender/editors/mesh/editmesh_slide.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/mesh/editmesh_slide.c b/source/blender/editors/mesh/editmesh_slide.c
index a82f34a4649..36ce610c64b 100644
--- a/source/blender/editors/mesh/editmesh_slide.c
+++ b/source/blender/editors/mesh/editmesh_slide.c
@@ -577,6 +577,7 @@ static int edbm_vertex_slide_modal(bContext *C, wmOperator *op, wmEvent *event)
break;
}
case RIGHTMOUSE:
+ case ESCKEY:
{
/* Enforce redraw */
ED_region_tag_redraw(vso->active_region);