Fix #135606: Grease Pencil: Gesture selection not deselcting when clicking in empty space

Points are actually deselected, but the viewport is not updated.
Set `changed` variable to `true` to send update calls.

Pull Request: https://projects.blender.org/blender/blender/pulls/135708
This commit is contained in:
Pratik Borhade
2025-03-10 11:06:21 +01:00
committed by Falk David
parent 785c9c9720
commit 042f8a1dc1
@@ -273,6 +273,7 @@ bool selection_update(const ViewContext *vc,
const IndexMask not_in_mask = changed_element_mask.complement(
selection.span.index_range(), memory);
ed::curves::fill_selection_false(selection.span, not_in_mask);
changed = true;
selection.finish();
}
}