diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-24 01:14:23 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2024-03-24 01:14:23 +0100 |
commit | 0ca0e8fc49c6cc48a0afa2cbff5f6e92fda0c954 (patch) | |
tree | 2b466778daf87f9a6152a3179de9cd15492fca15 /editor/animation_bezier_editor.h | |
parent | b0505b580d01c88844e0eb7550639b7aa655db97 (diff) | |
parent | d88df641eec1fcc246f078827a94bfbebcaf5dff (diff) | |
download | redot-engine-0ca0e8fc49c6cc48a0afa2cbff5f6e92fda0c954.tar.gz |
Merge pull request #88498 from CookieBadger/animation-fix-snapping-multiple
Fix snapping multiple keys in Animation
Diffstat (limited to 'editor/animation_bezier_editor.h')
-rw-r--r-- | editor/animation_bezier_editor.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/animation_bezier_editor.h b/editor/animation_bezier_editor.h index 2254d474ba..ab667421f3 100644 --- a/editor/animation_bezier_editor.h +++ b/editor/animation_bezier_editor.h @@ -109,6 +109,7 @@ class AnimationBezierTrackEdit : public Control { typedef Pair<int, int> IntPair; bool moving_selection_attempt = false; + float moving_selection_mouse_begin_x = 0.0; IntPair select_single_attempt; bool moving_selection = false; int moving_selection_from_key = 0; |