diff options
author | Mikael Hermansson <mikael@hermansson.io> | 2024-07-08 00:20:38 +0200 |
---|---|---|
committer | Mikael Hermansson <mikael@hermansson.io> | 2024-07-08 00:20:38 +0200 |
commit | 8546fe2b7936cbf6cf55f6bbe8bbd51d0ba2f709 (patch) | |
tree | a8c6abe625bd2e8bec2761c33fcb743c345958f3 /editor/animation_bezier_editor.cpp | |
parent | b97110cd307e4d78e20bfafe5de6c082194b2cd6 (diff) | |
download | redot-engine-8546fe2b7936cbf6cf55f6bbe8bbd51d0ba2f709.tar.gz |
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 aa8962b580..c5feb3b1d1 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); |