Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-11-13 05:59:36 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-11-13 06:04:18 +0300
commitd32520932ff58b00b0b67d168c51c050035176fe (patch)
tree660d32be831cab95c9fb831e220bb11949ab2d4c /source/blender/blenkernel/BKE_undo_system.h
parent4782e941c816f8965e243e43d26a87150ee6afd5 (diff)
Fix sculpt + undo curve crash
PaintCurve data ID data wasn't being remapped. Error in initial undo refactor.
Diffstat (limited to 'source/blender/blenkernel/BKE_undo_system.h')
-rw-r--r--source/blender/blenkernel/BKE_undo_system.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_undo_system.h b/source/blender/blenkernel/BKE_undo_system.h
index 6d8e04336ac..bc10d422a61 100644
--- a/source/blender/blenkernel/BKE_undo_system.h
+++ b/source/blender/blenkernel/BKE_undo_system.h
@@ -49,6 +49,7 @@ UNDO_REF_ID_TYPE(Object);
UNDO_REF_ID_TYPE(Scene);
UNDO_REF_ID_TYPE(Text);
UNDO_REF_ID_TYPE(Image);
+UNDO_REF_ID_TYPE(PaintCurve);
typedef struct UndoStack {
ListBase steps;