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-02-04 07:01:55 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-02-04 07:01:55 +0300
commit55c29e36dccddc7ae8c6512b6dec074437214097 (patch)
tree0d439554dea0e226c01f8b2969f33f6b32b656c1 /source/blender/blenkernel/BKE_undo_system.h
parentb5c841498c468771219b89c6b58bc751ee4e2472 (diff)
Undo System: add function to print undo steps
Useful for debugging.
Diffstat (limited to 'source/blender/blenkernel/BKE_undo_system.h')
-rw-r--r--source/blender/blenkernel/BKE_undo_system.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_undo_system.h b/source/blender/blenkernel/BKE_undo_system.h
index 5eac1b4f7a3..2b1c67f372b 100644
--- a/source/blender/blenkernel/BKE_undo_system.h
+++ b/source/blender/blenkernel/BKE_undo_system.h
@@ -200,4 +200,6 @@ void BKE_undosys_ID_map_foreach_ID_ref(
struct UndoIDPtrMap *map,
UndoTypeForEachIDRefFn foreach_ID_ref_fn, void *user_data);
+void BKE_undosys_print(UndoStack *ustack);
+
#endif /* __BKE_UNDO_SYSTEM_H__ */