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:
authorTon Roosendaal <ton@blender.org>2011-03-12 18:09:29 +0300
committerTon Roosendaal <ton@blender.org>2011-03-12 18:09:29 +0300
commitf6b21ecf840627f384c84e1a869ca54698792a87 (patch)
tree8a1bbcf48e19d6aa690dc98d5982ed513005d057 /source/blender/editors/util
parenta41694938231a108ed414561311663c3c4ae7c4c (diff)
More on bug #26432
More undo-push disabling for switching render slots. Also added 'undo push' print in debug mode (blender -d)
Diffstat (limited to 'source/blender/editors/util')
-rw-r--r--source/blender/editors/util/undo.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/source/blender/editors/util/undo.c b/source/blender/editors/util/undo.c
index b366a8460fc..2659863e592 100644
--- a/source/blender/editors/util/undo.c
+++ b/source/blender/editors/util/undo.c
@@ -80,6 +80,9 @@ void ED_undo_push(bContext *C, const char *str)
Object *obedit= CTX_data_edit_object(C);
Object *obact= CTX_data_active_object(C);
+ if (G.f & G_DEBUG)
+ printf("undo push %s\n", str);
+
if(obedit) {
if (U.undosteps == 0) return;