summaryrefslogtreecommitdiffstats
path: root/editor/animation_bezier_editor.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-07-08 11:48:26 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-07-08 11:48:26 +0200
commit50db553ed590d7381ea6d5fbed864264ddf2aa49 (patch)
tree3472c611ea35bcc6216c7af50bdf4c66c438ab02 /editor/animation_bezier_editor.cpp
parent3b891f5a8ab4c0cd98072de5c5b7839cc81e9bc8 (diff)
parent8546fe2b7936cbf6cf55f6bbe8bbd51d0ba2f709 (diff)
downloadredot-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.cpp2
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);