Merge pull request #94054 from mihe/fix-bezier-focus
Fix focus shortcut when in the bezier curve editor
This commit is contained in:
commit
50db553ed5
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue