From 4290a25bd54623be1fee4db2911f7ddcc9b88ba8 Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Sun, 17 Jan 2016 22:27:56 -0300 Subject: [PATCH] small fix --- tools/editor/animation_editor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/editor/animation_editor.cpp b/tools/editor/animation_editor.cpp index 8c21a1f6bf8..fbe50d6d96a 100644 --- a/tools/editor/animation_editor.cpp +++ b/tools/editor/animation_editor.cpp @@ -3489,7 +3489,7 @@ void AnimationKeyEditor::_step_changed(float p_len) { updating=true; if (!animation.is_null()) { animation->set_step(p_len); - emit_signal("animation_step_changed",animation->get_length()); + emit_signal("animation_step_changed",animation->get_step()); } updating=false; }