diff options
author | Michael Alexsander <michaelalexsander@protonmail.com> | 2020-07-02 16:07:28 -0300 |
---|---|---|
committer | Michael Alexsander <michaelalexsander@protonmail.com> | 2020-07-02 16:07:28 -0300 |
commit | eee9d053a37c36007ca988dd2fa06a366e31e412 (patch) | |
tree | 2ae6612792342d1baac30ecb5395c274d09316e9 | |
parent | 67e4082b1e73f3cbe518c499eb328b0f68f3419b (diff) |
Fix timeline cursor not updating on zoom change in the Bezier editor
-rw-r--r-- | editor/animation_bezier_editor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/editor/animation_bezier_editor.cpp b/editor/animation_bezier_editor.cpp index e52f234218..17b03fd479 100644 --- a/editor/animation_bezier_editor.cpp +++ b/editor/animation_bezier_editor.cpp @@ -559,6 +559,7 @@ void AnimationBezierTrackEdit::set_root(Node *p_root) { void AnimationBezierTrackEdit::_zoom_changed() { update(); + play_position->update(); } String AnimationBezierTrackEdit::get_tooltip(const Point2 &p_pos) const { |