[Bf-blender-cvs] [52aa963f0ef] master: Fix T55568: second click event ignored

Campbell Barton noreply at git.blender.org
Thu Jun 21 14:46:12 CEST 2018


Commit: 52aa963f0ef1b6f4abba6653e9a441dee234127a
Author: Campbell Barton
Date:   Thu Jun 21 10:58:03 2018 +0200
Branches: master
https://developer.blender.org/rB52aa963f0ef1b6f4abba6653e9a441dee234127a

Fix T55568: second click event ignored

Double-click handling caused the second click to be ignored
for keymaps that only handle click.

===================================================================

M	source/blender/windowmanager/intern/wm_event_system.c

===================================================================

diff --git a/source/blender/windowmanager/intern/wm_event_system.c b/source/blender/windowmanager/intern/wm_event_system.c
index c9a09f46a37..76e9b116321 100644
--- a/source/blender/windowmanager/intern/wm_event_system.c
+++ b/source/blender/windowmanager/intern/wm_event_system.c
@@ -2329,6 +2329,13 @@ static int wm_handlers_do(bContext *C, wmEvent *event, ListBase *handlers)
 				else if (event->val == KM_DBL_CLICK) {
 					event->val = KM_PRESS;
 					action |= wm_handlers_do_intern(C, event, handlers);
+					event->val = KM_RELEASE;
+					action |= wm_handlers_do_intern(C, event, handlers);
+
+					if (wm_action_not_handled(action)) {
+						event->val = KM_CLICK;
+						action |= wm_handlers_do_intern(C, event, handlers);
+					}
 
 					/* revert value if not handled */
 					if (wm_action_not_handled(action)) {



More information about the Bf-blender-cvs mailing list