Skip to content

Commit 8b01729

Browse files
committed
Merge pull request #109289 from BastiaanOlij/openxr_fix_actionmap_tooltip
OpenXR: Fix required extension tooltip
2 parents 5a556c6 + cb8c051 commit 8b01729

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/openxr/editor/openxr_interaction_profile_editor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ void OpenXRInteractionProfileEditor::_add_io_path(VBoxContainer *p_container, co
246246
path_label->set_text(p_io_path->display_name);
247247
} else {
248248
path_label->set_text(p_io_path->display_name + "*");
249-
p_container->set_tooltip_text(vformat(TTR("Note: This binding path requires extension %s support."), p_io_path->openxr_extension_name));
249+
path_hb->set_tooltip_text(vformat(TTR("Note: This binding path requires extension %s support."), p_io_path->openxr_extension_name));
250250
}
251251
path_label->set_h_size_flags(Control::SIZE_EXPAND_FILL);
252252
path_hb->add_child(path_label);

0 commit comments

Comments
 (0)