diff options
Diffstat (limited to 'core/undo_redo.cpp')
-rw-r--r-- | core/undo_redo.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/undo_redo.cpp b/core/undo_redo.cpp index 1a0ccc4a7e..8326e262b6 100644 --- a/core/undo_redo.cpp +++ b/core/undo_redo.cpp @@ -323,8 +323,10 @@ void UndoRedo::redo() { void UndoRedo::undo() { ERR_FAIL_COND(action_level>0); + print_line("undo"); if (current_action<0) return; //nothing to redo + print_line("CACTION IS: "+actions[current_action].name); _process_operation_list(actions[current_action].undo_ops.front()); current_action--; version--; |