Merge pull request #97111 from WhalesState/animation-track-editor

Fix animation `BezierEditor` uses only half the view.
This commit is contained in:
Rémi Verschelde 2024-09-17 21:01:35 +02:00
commit 353bc4d08f
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -5843,7 +5843,7 @@ void AnimationTrackEditor::_zoom_callback(float p_zoom_factor, Vector2 p_origin,
void AnimationTrackEditor::_cancel_bezier_edit() {
bezier_edit->hide();
scroll->show();
box_selection_container->show();
bezier_edit_icon->set_pressed(false);
auto_fit->show();
auto_fit_bezier->hide();
@ -5853,7 +5853,7 @@ void AnimationTrackEditor::_bezier_edit(int p_for_track) {
_clear_selection(); // Bezier probably wants to use a separate selection mode.
bezier_edit->set_root(root);
bezier_edit->set_animation_and_track(animation, p_for_track, read_only);
scroll->hide();
box_selection_container->hide();
bezier_edit->show();
auto_fit->hide();
auto_fit_bezier->show();