From 87bb6cdc6fed6048a3a5c29167b854af1165271d Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Tue, 24 Jan 2017 00:19:31 -0300 Subject: Ability to drag and drop around audio effects! --- core/undo_redo.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'core/undo_redo.cpp') 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--; -- cgit v1.2.3