diff options
author | Zi Ye <major.mcdoom@gmail.com> | 2024-10-09 13:26:22 -0500 |
---|---|---|
committer | Zi Ye <major.mcdoom@gmail.com> | 2024-10-09 13:26:22 -0500 |
commit | 77c444b80b5447f74d20f7de511340957701d1a2 (patch) | |
tree | 492afbbe5397d373d2dcdaf563d4d930fe5425a1 /editor/animation_bezier_editor.cpp | |
parent | 4c4e67334412f73c9deba5e5d29afa8651418af2 (diff) | |
download | redot-engine-77c444b80b5447f74d20f7de511340957701d1a2.tar.gz |
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 2e8c727849..802ddb7330 100644 --- a/editor/animation_bezier_editor.cpp +++ b/editor/animation_bezier_editor.cpp @@ -1655,7 +1655,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); |