Skip to content

Commit 22e6773

Browse files
committed
Fix accessibility name errors in BlendSpace2D editor
1 parent d5ad055 commit 22e6773

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

editor/animation/animation_blend_space_2d_editor.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -986,7 +986,7 @@ AnimationNodeBlendSpace2DEditor::AnimationNodeBlendSpace2DEditor() {
986986
edit_y->set_min(-1000);
987987
edit_y->set_step(0.01);
988988
edit_y->set_max(1000);
989-
edit_y->set_accessibility_name(TTRC("Blend X Value"));
989+
edit_y->set_accessibility_name(TTRC("Blend Y Value"));
990990
edit_y->connect(SceneStringName(value_changed), callable_mp(this, &AnimationNodeBlendSpace2DEditor::_edit_point_pos));
991991
open_editor = memnew(Button);
992992
edit_hb->add_child(open_editor);
@@ -1051,12 +1051,12 @@ AnimationNodeBlendSpace2DEditor::AnimationNodeBlendSpace2DEditor() {
10511051
bottom_vbox->add_child(min_x_value);
10521052
bottom_vbox->add_spacer();
10531053
label_x = memnew(LineEdit);
1054-
label_y->set_accessibility_name(TTRC("X Value"));
1054+
label_x->set_accessibility_name(TTRC("X Value"));
10551055
bottom_vbox->add_child(label_x);
10561056
label_x->set_expand_to_text_length_enabled(true);
10571057
bottom_vbox->add_spacer();
10581058
max_x_value = memnew(SpinBox);
1059-
max_x_value->set_accessibility_name(TTRC("Max Y"));
1059+
max_x_value->set_accessibility_name(TTRC("Max X"));
10601060
bottom_vbox->add_child(max_x_value);
10611061

10621062
max_x_value->set_max(10000);

0 commit comments

Comments
 (0)