small fix

This commit is contained in:
Juan Linietsky 2016-01-17 22:27:56 -03:00
parent d68d36dac3
commit 4290a25bd5

View file

@ -3489,7 +3489,7 @@ void AnimationKeyEditor::_step_changed(float p_len) {
updating=true; updating=true;
if (!animation.is_null()) { if (!animation.is_null()) {
animation->set_step(p_len); animation->set_step(p_len);
emit_signal("animation_step_changed",animation->get_length()); emit_signal("animation_step_changed",animation->get_step());
} }
updating=false; updating=false;
} }