summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2017-01-24 00:19:31 -0300
committerJuan Linietsky <reduzio@gmail.com>2017-01-24 00:19:31 -0300
commit87bb6cdc6fed6048a3a5c29167b854af1165271d (patch)
tree69ecd62a1ab8588cb27459d9e3ca5c4fc7065b92 /core
parent3b019bf644f61aaa2eaf9276448d97fb6e6a868a (diff)
Ability to drag and drop around audio effects!
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--;