[Bf-blender-cvs] [b681461c845] blender2.8: Fix T55568: second click event ignored

Campbell Barton noreply at git.blender.org
Thu Jun 21 11:11:26 CEST 2018


Commit: b681461c845cdfe193ee60e288625a29a5157a62
Author: Campbell Barton
Date:   Thu Jun 21 10:58:03 2018 +0200
Branches: blender2.8
https://developer.blender.org/rBb681461c845cdfe193ee60e288625a29a5157a62

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