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-01-18 16:48:00 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-01-18 16:53:39 +0300
commit547cb5e264eb1f6b03c7327e1acae6e4f2b0187a (patch)
tree353bfad695c19dbd55dcc0a303d8a08e6b3bef19 /source/blender/editors/include
parent985712e5ee178789dbdf9124a896252db042ba50 (diff)
Fix/workaround: Undo erase all dyntopo changes
Memfile undo isn't compatible with sculpt or edit-mode. This didn't work in 2.7x, so best disable memfile undo for now in situations where it's going to loose data or crash.
Diffstat (limited to 'source/blender/editors/include')
-rw-r--r--source/blender/editors/include/ED_undo.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/editors/include/ED_undo.h b/source/blender/editors/include/ED_undo.h
index 7995644f39e..677d64acc7d 100644
--- a/source/blender/editors/include/ED_undo.h
+++ b/source/blender/editors/include/ED_undo.h
@@ -54,6 +54,8 @@ void ED_undo_operator_repeat_cb_evt(struct bContext *C, void *arg_op, int arg
bool ED_undo_is_valid(const struct bContext *C, const char *undoname);
+bool ED_undo_is_memfile_compatible(const struct bContext *C);
+
struct UndoStack *ED_undo_stack_get(void);
/* helpers */