diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-07-07 21:58:36 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-07-07 21:58:36 +0200 |
commit | 4e38ce294dfa127b0b0a3db56a1ad585b14dae91 (patch) | |
tree | 733fa0c9cbcd1aa785891b75a224b02746ebe4e9 /editor/animation_bezier_editor.h | |
parent | f3af22b10b1e64146d48be7726f6395c9a4185e9 (diff) | |
parent | af26e7b9b7d5227a7090bcebc237a4de4cf2fcfb (diff) | |
download | redot-engine-4e38ce294dfa127b0b0a3db56a1ad585b14dae91.tar.gz |
Merge pull request #93860 from CookieBadger/animation-bezier-undo-on-different-animation-fix
Fix inconsistent behavior of Bezier editor undo operations upon selection of different animation
Diffstat (limited to 'editor/animation_bezier_editor.h')
-rw-r--r-- | editor/animation_bezier_editor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/animation_bezier_editor.h b/editor/animation_bezier_editor.h index 3067c923b9..dd7e8758f3 100644 --- a/editor/animation_bezier_editor.h +++ b/editor/animation_bezier_editor.h @@ -221,7 +221,7 @@ public: void paste_keys(real_t p_ofs, bool p_ofs_valid); void delete_selection(); - void _bezier_track_insert_key(int p_track, double p_time, real_t p_value, const Vector2 &p_in_handle, const Vector2 &p_out_handle, const Animation::HandleMode p_handle_mode); + void _bezier_track_insert_key_at_anim(const Ref<Animation> &p_anim, int p_track, double p_time, real_t p_value, const Vector2 &p_in_handle, const Vector2 &p_out_handle, const Animation::HandleMode p_handle_mode); AnimationBezierTrackEdit(); }; |