Skip to content

Commit

Permalink
Merge pull request #95400 from AThousandShips/anim_signal_fix
Browse files Browse the repository at this point in the history
[Editor] Fix missing bind for animation editor callback
  • Loading branch information
akien-mga committed Aug 12, 2024
2 parents b8e8b33 + 7eed651 commit 29a0e51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion editor/plugins/animation_player_editor_plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2089,7 +2089,7 @@ AnimationPlayerEditor::AnimationPlayerEditor(AnimationPlayerEditorPlugin *p_plug

add_child(track_editor);
track_editor->set_v_size_flags(SIZE_EXPAND_FILL);
track_editor->connect(SNAME("timeline_changed"), callable_mp(this, &AnimationPlayerEditor::_animation_key_editor_seek));
track_editor->connect(SNAME("timeline_changed"), callable_mp(this, &AnimationPlayerEditor::_animation_key_editor_seek).bind(false));
track_editor->connect(SNAME("animation_len_changed"), callable_mp(this, &AnimationPlayerEditor::_animation_key_editor_anim_len_changed));

_update_player();
Expand Down

0 comments on commit 29a0e51

Please sign in to comment.