diff options
author | Juan Linietsky <reduzio@gmail.com> | 2016-01-17 22:27:56 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2016-01-17 22:27:56 -0300 |
commit | 4290a25bd54623be1fee4db2911f7ddcc9b88ba8 (patch) | |
tree | 67d91c9c31a691f787cbb1039cfeb34e7d5ea3da /tools/editor/animation_editor.cpp | |
parent | d68d36dac31fd65cae0e0e6725fd7cb6e9f9e51d (diff) |
small fix
Diffstat (limited to 'tools/editor/animation_editor.cpp')
-rw-r--r-- | tools/editor/animation_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/animation_editor.cpp b/tools/editor/animation_editor.cpp index 8c21a1f6bf..fbe50d6d96 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; } |