From 0a1a7323e579fe730b64322cf49ba28d85873241 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Wed, 6 Sep 2017 00:00:46 +1000 Subject: [PATCH] Manipulator: missing exit() call --- .../windowmanager/manipulators/intern/wm_manipulator_map.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/source/blender/windowmanager/manipulators/intern/wm_manipulator_map.c b/source/blender/windowmanager/manipulators/intern/wm_manipulator_map.c index e0c803067d6..0d2a8f7dcc5 100644 --- a/source/blender/windowmanager/manipulators/intern/wm_manipulator_map.c +++ b/source/blender/windowmanager/manipulators/intern/wm_manipulator_map.c @@ -658,6 +658,11 @@ void wm_manipulatormaps_handled_modal_update( else { wm_manipulatormap_highlight_set(mmap, C, NULL, 0); if (mpr) { + /* This isn't defined if it ends because of success of cancel, we may want to change. */ + bool cancel = true; + if (mpr->type->exit) { + mpr->type->exit(C, mpr, cancel); + } wm_manipulatormap_modal_set(mmap, C, mpr, NULL, false); } }