summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-04-15 10:00:35 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-04-15 10:00:35 +0200
commitde97ab4b55dcbc27717fe75c59c2ff061efb38a5 (patch)
tree04ff77c5e4885f68ae2cc6dc105a3cf7772a976e
parent4e1ed6bc23a916e903baaa05e2e3775c9df9f932 (diff)
parenta0e644eab59078ef246baefa3c55558892c7816e (diff)
downloadredot-engine-de97ab4b55dcbc27717fe75c59c2ff061efb38a5.tar.gz
Merge pull request #90676 from adamscott/change-qa-to-forum
Rename Q&A to Forum in the Help top bar
-rw-r--r--editor/editor_node.cpp6
-rw-r--r--editor/editor_node.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/editor/editor_node.cpp b/editor/editor_node.cpp
index 4fb1a86ce2..182d249073 100644
--- a/editor/editor_node.cpp
+++ b/editor/editor_node.cpp
@@ -3055,8 +3055,8 @@ void EditorNode::_menu_option_confirm(int p_option, bool p_confirmed) {
case HELP_DOCS: {
OS::get_singleton()->shell_open(VERSION_DOCS_URL "/");
} break;
- case HELP_QA: {
- OS::get_singleton()->shell_open("https://godotengine.org/qa/");
+ case HELP_FORUM: {
+ OS::get_singleton()->shell_open("https://forum.godotengine.org/");
} break;
case HELP_REPORT_A_BUG: {
OS::get_singleton()->shell_open("https://github.com/godotengine/godot/issues");
@@ -6886,7 +6886,7 @@ EditorNode::EditorNode() {
help_menu->add_icon_shortcut(theme->get_icon(SNAME("HelpSearch"), EditorStringName(EditorIcons)), ED_GET_SHORTCUT("editor/editor_help"), HELP_SEARCH);
help_menu->add_separator();
help_menu->add_shortcut(ED_SHORTCUT_AND_COMMAND("editor/online_docs", TTR("Online Documentation")), HELP_DOCS);
- help_menu->add_shortcut(ED_SHORTCUT_AND_COMMAND("editor/q&a", TTR("Questions & Answers")), HELP_QA);
+ help_menu->add_shortcut(ED_SHORTCUT_AND_COMMAND("editor/forum", TTR("Forum")), HELP_FORUM);
help_menu->add_shortcut(ED_SHORTCUT_AND_COMMAND("editor/community", TTR("Community")), HELP_COMMUNITY);
help_menu->add_separator();
help_menu->add_icon_shortcut(theme->get_icon(SNAME("ActionCopy"), EditorStringName(EditorIcons)), ED_SHORTCUT_AND_COMMAND("editor/copy_system_info", TTR("Copy System Info")), HELP_COPY_SYSTEM_INFO);
diff --git a/editor/editor_node.h b/editor/editor_node.h
index 96acc8bf46..3bda1d4507 100644
--- a/editor/editor_node.h
+++ b/editor/editor_node.h
@@ -226,7 +226,7 @@ private:
HELP_SEARCH,
HELP_COMMAND_PALETTE,
HELP_DOCS,
- HELP_QA,
+ HELP_FORUM,
HELP_REPORT_A_BUG,
HELP_COPY_SYSTEM_INFO,
HELP_SUGGEST_A_FEATURE,