Skip to content

Commit

Permalink
Merge pull request #89915 from KoBeWi/podzasób
Browse files Browse the repository at this point in the history
Disable auto-translation in sub-resource list menu
  • Loading branch information
akien-mga committed Mar 28, 2024
2 parents af96671 + ad7d541 commit b23d7c3
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions editor/scene_tree_dock.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3511,6 +3511,7 @@ void SceneTreeDock::_update_tree_menu() {
tree_menu->set_item_tooltip(tree_menu->get_item_index(TOOL_CENTER_PARENT), TTR("If enabled, Reparent to New Node will create the new node in the center of the selected nodes, if possible."));

PopupMenu *resource_list = memnew(PopupMenu);
resource_list->set_auto_translate_mode(AUTO_TRANSLATE_MODE_DISABLED);
resource_list->connect("about_to_popup", callable_mp(this, &SceneTreeDock::_list_all_subresources).bind(resource_list));
resource_list->connect("index_pressed", callable_mp(this, &SceneTreeDock::_edit_subresource).bind(resource_list));
tree_menu->add_submenu_node_item(TTR("All Scene Sub-Resources"), resource_list);
Expand Down

0 comments on commit b23d7c3

Please sign in to comment.