diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-11-12 12:13:18 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-11-12 12:13:18 -0600 |
commit | 3c3303e0a4974ad1793e6f6c9c79f26b1d167d92 (patch) | |
tree | 84922d251bf6465fdbd89beff29f1ff7738967a9 /editor/animation_bezier_editor.cpp | |
parent | b1526f45b8e9b8cdbb6b799bdba84775694e8d0e (diff) | |
parent | 77c444b80b5447f74d20f7de511340957701d1a2 (diff) | |
download | redot-engine-3c3303e0a4974ad1793e6f6c9c79f26b1d167d92.tar.gz |
Merge pull request #98031 from MajorMcDoom/anim-curve-zoom-fix
Fix inverted vertical zoom interaction in animation 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 8d7c6a1f16..b923dc0732 100644 --- a/editor/animation_bezier_editor.cpp +++ b/editor/animation_bezier_editor.cpp @@ -1650,7 +1650,7 @@ void AnimationBezierTrackEdit::_zoom_callback(float p_zoom_factor, Vector2 p_ori Ref<InputEventWithModifiers> iewm = p_event; if (iewm.is_valid() && iewm->is_alt_pressed()) { // Alternate zoom (doesn't affect timeline). - timeline_v_zoom = CLAMP(timeline_v_zoom * p_zoom_factor, 0.000001, 100000); + timeline_v_zoom = CLAMP(timeline_v_zoom / p_zoom_factor, 0.000001, 100000); } else { float zoom_factor = p_zoom_factor > 1.0 ? AnimationTimelineEdit::SCROLL_ZOOM_FACTOR_IN : AnimationTimelineEdit::SCROLL_ZOOM_FACTOR_OUT; timeline->_zoom_callback(zoom_factor, p_origin, p_event); |