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>2020-10-30 12:56:48 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-10-30 12:56:48 +0300
commitebb8f8fffc8d346e8522825b9b05fda72be37719 (patch)
tree65fd3edcbc92e4c09b35c8e236d3c873c7f164ec /source/blender/editors/include
parent841517ca81058fca15e1a693f0646b0e1bbafe0c (diff)
parent8d2576fd295fc67e2b70c282117928173ec1af8a (diff)
Merge branch 'blender-v2.91-release'
Diffstat (limited to 'source/blender/editors/include')
-rw-r--r--source/blender/editors/include/ED_undo.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/editors/include/ED_undo.h b/source/blender/editors/include/ED_undo.h
index dbd374415b0..989854872f3 100644
--- a/source/blender/editors/include/ED_undo.h
+++ b/source/blender/editors/include/ED_undo.h
@@ -36,6 +36,9 @@ struct wmOperator;
struct wmOperatorType;
/* undo.c */
+bool ED_undo_is_state_valid(struct bContext *C);
+void ED_undo_group_begin(struct bContext *C);
+void ED_undo_group_end(struct bContext *C);
void ED_undo_push(struct bContext *C, const char *str);
void ED_undo_push_op(struct bContext *C, struct wmOperator *op);
void ED_undo_grouped_push(struct bContext *C, const char *str);