summaryrefslogtreecommitdiffstats
path: root/editor/animation_track_editor.h
diff options
context:
space:
mode:
authoremild <emil.dobetsberger@gmail.com>2024-02-16 16:48:19 +0100
committeremild <emil.dobetsberger@gmail.com>2024-02-20 12:17:20 +0100
commit041315253f63ed18f99b2df70dcd6a58a811a784 (patch)
treec9c0a50260b16f60292a0ba03bf21e9513b6420a /editor/animation_track_editor.h
parentb7145638d5b235e8e1b2fe039a0cee48a4bbb26d (diff)
downloadredot-engine-041315253f63ed18f99b2df70dcd6a58a811a784.tar.gz
Fix various bugs in Animation key right click actions
Diffstat (limited to 'editor/animation_track_editor.h')
-rw-r--r--editor/animation_track_editor.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/animation_track_editor.h b/editor/animation_track_editor.h
index 0d6f93fefc..4f4905d0d6 100644
--- a/editor/animation_track_editor.h
+++ b/editor/animation_track_editor.h
@@ -579,13 +579,13 @@ class AnimationTrackEditor : public VBoxContainer {
void _cleanup_animation(Ref<Animation> p_animation);
- void _anim_duplicate_keys(float p_ofs, int p_track);
+ void _anim_duplicate_keys(float p_ofs, bool p_ofs_valid, int p_track);
void _anim_copy_keys(bool p_cut);
bool _is_track_compatible(int p_target_track_idx, Variant::Type p_source_value_type, Animation::TrackType p_source_track_type);
- void _anim_paste_keys(float p_ofs, int p_track);
+ void _anim_paste_keys(float p_ofs, bool p_ofs_valid, int p_track);
void _view_group_toggle();
Button *view_group = nullptr;