Page MenuHome
Paste P2939

Masterwork From Distant Lands
ActivePublic

Authored by Dalai Felinto (dfelinto) on May 12 2022, 12:40 PM.
diff --git a/source/blender/editors/sculpt_paint/curves_sculpt_selection_paint.cc b/source/blender/editors/sculpt_paint/curves_sculpt_selection_paint.cc
index 2cd18f95493..11dd81cf39c 100644
--- a/source/blender/editors/sculpt_paint/curves_sculpt_selection_paint.cc
+++ b/source/blender/editors/sculpt_paint/curves_sculpt_selection_paint.cc
@@ -16,6 +16,8 @@
#include "ED_screen.h"
#include "ED_view3d.h"
+#include "WM_api.h"
+
#include "curves_sculpt_intern.hh"
/**
@@ -118,6 +120,7 @@ struct SelectionPaintOperationExecutor {
}
DEG_id_tag_update(&curves_id_->id, ID_RECALC_SELECT);
+ WM_main_add_notifier(NC_GEOM | ND_DATA, &curves_id_->id);
ED_region_tag_redraw(region_);
}

Event Timeline

Dalai Felinto (dfelinto) changed the title of this paste from untitled to Masterwork From Distant Lands.