From 14cf38a49e46e662a8eeb9f1c1980595b1f30bfb Mon Sep 17 00:00:00 2001 From: Pablo Vazquez Date: Tue, 7 Oct 2025 13:10:39 +0200 Subject: [PATCH] UI: Remove Tutorials from Help menu As mentioned in !146730, blender.org does not provide a list of tutorials anymore, instead, the "Support" section has links to user communities, enterprise support, and mentions tutorials as part of a community activity. Also add "Get Involved", which is a hub for inviting contributors in all areas. Pull Request: https://projects.blender.org/blender/blender/pulls/147414 --- scripts/startup/bl_ui/space_topbar.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/startup/bl_ui/space_topbar.py b/scripts/startup/bl_ui/space_topbar.py index 487cb596d8a..0b8997c75e7 100644 --- a/scripts/startup/bl_ui/space_topbar.py +++ b/scripts/startup/bl_ui/space_topbar.py @@ -585,10 +585,10 @@ class TOPBAR_MT_help(Menu): show_developer = context.preferences.view.show_developer_ui layout.operator("wm.url_open_preset", text="Manual", icon='URL').type = 'MANUAL' - layout.operator("wm.url_open_preset", text="Release Notes").type = 'RELEASE_NOTES' - layout.operator("wm.url_open", text="Tutorials").url = "https://www.blender.org/tutorials" layout.operator("wm.url_open", text="Support").url = "https://www.blender.org/support" layout.operator("wm.url_open", text="User Communities").url = "https://www.blender.org/community/" + layout.operator("wm.url_open", text="Get Involved").url = "https://www.blender.org/get-involved/" + layout.operator("wm.url_open_preset", text="Release Notes").type = 'RELEASE_NOTES' layout.separator()