From 3a7ab62eac05e700372a2b17b901b0181be82abe Mon Sep 17 00:00:00 2001 From: Germano Cavalcante Date: Wed, 9 Jun 2021 10:54:24 -0300 Subject: Fix T88885: Circle select deselects first selections after moving cursor `is_active_prev` is always set after the first operation. But this was not the case with `wait_for_input` `false`. --- source/blender/windowmanager/intern/wm_gesture_ops.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender/windowmanager/intern/wm_gesture_ops.c') diff --git a/source/blender/windowmanager/intern/wm_gesture_ops.c b/source/blender/windowmanager/intern/wm_gesture_ops.c index 07d68293714..94535427dac 100644 --- a/source/blender/windowmanager/intern/wm_gesture_ops.c +++ b/source/blender/windowmanager/intern/wm_gesture_ops.c @@ -316,6 +316,7 @@ int WM_gesture_circle_invoke(bContext *C, wmOperator *op, const wmEvent *event) if (gesture->wait_for_input == false) { gesture->is_active = true; gesture_circle_apply(C, op); + gesture->is_active_prev = true; } /* add modal handler */ -- cgit v1.2.3