From 0f17c184e4b5d9c1424a85e360604f81abe8bcbe Mon Sep 17 00:00:00 2001 From: vaner-org Date: Fri, 22 Aug 2025 05:18:41 +0530 Subject: [PATCH] Fix accessibility name errors in BlendSpace2D editor (cherry picked from commit 22e67735f114bf3b9e4f102ff5b530528082a972) --- editor/animation/animation_blend_space_2d_editor.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/editor/animation/animation_blend_space_2d_editor.cpp b/editor/animation/animation_blend_space_2d_editor.cpp index 17331d02c0f..f1701c477f2 100644 --- a/editor/animation/animation_blend_space_2d_editor.cpp +++ b/editor/animation/animation_blend_space_2d_editor.cpp @@ -980,7 +980,7 @@ AnimationNodeBlendSpace2DEditor::AnimationNodeBlendSpace2DEditor() { edit_y->set_min(-1000); edit_y->set_step(0.01); edit_y->set_max(1000); - edit_y->set_accessibility_name(TTRC("Blend X Value")); + edit_y->set_accessibility_name(TTRC("Blend Y Value")); edit_y->connect(SceneStringName(value_changed), callable_mp(this, &AnimationNodeBlendSpace2DEditor::_edit_point_pos)); open_editor = memnew(Button); edit_hb->add_child(open_editor); @@ -1045,12 +1045,12 @@ AnimationNodeBlendSpace2DEditor::AnimationNodeBlendSpace2DEditor() { bottom_vbox->add_child(min_x_value); bottom_vbox->add_spacer(); label_x = memnew(LineEdit); - label_y->set_accessibility_name(TTRC("X Value")); + label_x->set_accessibility_name(TTRC("X Value")); bottom_vbox->add_child(label_x); label_x->set_expand_to_text_length_enabled(true); bottom_vbox->add_spacer(); max_x_value = memnew(SpinBox); - max_x_value->set_accessibility_name(TTRC("Max Y")); + max_x_value->set_accessibility_name(TTRC("Max X")); bottom_vbox->add_child(max_x_value); max_x_value->set_max(10000);