Fix #117266: Sculpt: Initialize Face Sets not updating

Likely caused by 251069ae5b due to missing flag for updating draw buffers.

Pull Request: https://projects.blender.org/blender/blender/pulls/117273
This commit is contained in:
Pratik Borhade
2024-01-18 14:19:55 +01:00
committed by Hans Goudey
parent 11afaa8dc6
commit e97d34aba6

View File

@@ -877,6 +877,10 @@ static int sculpt_face_set_init_exec(bContext *C, wmOperator *op)
undo::push_end(ob);
for (PBVHNode *node : nodes) {
BKE_pbvh_node_mark_redraw(node);
}
SCULPT_tag_update_overlays(C);
return OPERATOR_FINISHED;