summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
Diffstat (limited to 'core')
-rw-r--r--core/undo_redo.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/core/undo_redo.cpp b/core/undo_redo.cpp
index 8326e262b6..1a0ccc4a7e 100644
--- a/core/undo_redo.cpp
+++ b/core/undo_redo.cpp
@@ -323,10 +323,8 @@ 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--;