summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuan Linietsky <reduzio@gmail.com>2016-01-17 22:27:56 -0300
committerJuan Linietsky <reduzio@gmail.com>2016-01-17 22:27:56 -0300
commit4290a25bd54623be1fee4db2911f7ddcc9b88ba8 (patch)
tree67d91c9c31a691f787cbb1039cfeb34e7d5ea3da
parentd68d36dac31fd65cae0e0e6725fd7cb6e9f9e51d (diff)
small fix
-rw-r--r--tools/editor/animation_editor.cpp2
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;
}