GPv3: Curve to Mesh node #113659

Manually merged
Dalai Felinto merged 86 commits from dfelinto/blender:grease-nodes-curve-to-mesh into main 2023-10-16 11:49:25 +02:00
1 changed files with 4 additions and 1 deletions
Showing only changes of commit 1b85ca7b05 - Show all commits

View File

@ -11,6 +11,8 @@
#include "BLT_translation.h"
#include "DEG_depsgraph.hh"
#include "UI_interface.hh"
#include "UI_tree_view.hh"
@ -118,8 +120,9 @@ class LayerNodeDropTarget : public TreeViewItemDropTarget {
return false;
}
}
WM_event_add_notifier(C, NC_GPENCIL | NA_EDITED, nullptr);
DEG_id_tag_update(&grease_pencil.id, ID_RECALC_GEOMETRY);
WM_event_add_notifier(C, NC_GPENCIL | NA_EDITED, nullptr);
return true;
}
};