From 3d5e3b60befb6cc05c940e61ff8126fdc0c3b7d9 Mon Sep 17 00:00:00 2001 From: Falk David Date: Tue, 12 Mar 2024 15:48:29 +0100 Subject: [PATCH] Fix: GPv3: Add missing call to `selection.finish()` --- source/blender/editors/sculpt_paint/grease_pencil_paint.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/blender/editors/sculpt_paint/grease_pencil_paint.cc b/source/blender/editors/sculpt_paint/grease_pencil_paint.cc index 44d1dc0f334..68a83984a48 100644 --- a/source/blender/editors/sculpt_paint/grease_pencil_paint.cc +++ b/source/blender/editors/sculpt_paint/grease_pencil_paint.cc @@ -589,6 +589,8 @@ void PaintOperation::process_stroke_end(const bContext &C, bke::greasepencil::Dr else if (selection_domain == bke::AttrDomain::Point) { ed::curves::fill_selection_false(selection.span.slice(points)); } + + selection.finish(); } void PaintOperation::on_stroke_done(const bContext &C)