diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-07-08 11:48:26 +0200 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-07-08 11:48:26 +0200 |
commit | 50db553ed590d7381ea6d5fbed864264ddf2aa49 (patch) | |
tree | 3472c611ea35bcc6216c7af50bdf4c66c438ab02 /editor/animation_bezier_editor.cpp | |
parent | 3b891f5a8ab4c0cd98072de5c5b7839cc81e9bc8 (diff) | |
parent | 8546fe2b7936cbf6cf55f6bbe8bbd51d0ba2f709 (diff) | |
download | redot-engine-50db553ed590d7381ea6d5fbed864264ddf2aa49.tar.gz |
Merge pull request #94054 from mihe/fix-bezier-focus
Fix focus shortcut when in the bezier curve editor
Diffstat (limited to 'editor/animation_bezier_editor.cpp')
-rw-r--r-- | editor/animation_bezier_editor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editor/animation_bezier_editor.cpp b/editor/animation_bezier_editor.cpp index 9e5281368a..48b9e01fd8 100644 --- a/editor/animation_bezier_editor.cpp +++ b/editor/animation_bezier_editor.cpp @@ -965,7 +965,7 @@ void AnimationBezierTrackEdit::gui_input(const Ref<InputEvent> &p_event) { real_t minimum_value = INFINITY; real_t maximum_value = -INFINITY; - for (const IntPair &E : selection) { + for (const IntPair &E : focused_keys) { IntPair key_pair = E; real_t time = animation->track_get_key_time(key_pair.first, key_pair.second); |