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`.
This commit is contained in:
Germano Cavalcante 2021-06-09 10:54:24 -03:00
parent 1f55e12206
commit 3a7ab62eac
Notes: blender-bot 2023-06-07 10:31:13 +02:00
Referenced by issue #88885, Circle select deselects first edge after moving cursor
1 changed files with 1 additions and 0 deletions

View File

@ -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 */