Skip to content

Commit de97ab4

Browse files
committed
Merge pull request godotengine#90676 from adamscott/change-qa-to-forum
Rename Q&A to Forum in the Help top bar
2 parents 4e1ed6b + a0e644e commit de97ab4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

editor/editor_node.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3055,8 +3055,8 @@ void EditorNode::_menu_option_confirm(int p_option, bool p_confirmed) {
30553055
case HELP_DOCS: {
30563056
OS::get_singleton()->shell_open(VERSION_DOCS_URL "/");
30573057
} break;
3058-
case HELP_QA: {
3059-
OS::get_singleton()->shell_open("https://godotengine.org/qa/");
3058+
case HELP_FORUM: {
3059+
OS::get_singleton()->shell_open("https://forum.godotengine.org/");
30603060
} break;
30613061
case HELP_REPORT_A_BUG: {
30623062
OS::get_singleton()->shell_open("https://github.com/godotengine/godot/issues");
@@ -6886,7 +6886,7 @@ EditorNode::EditorNode() {
68866886
help_menu->add_icon_shortcut(theme->get_icon(SNAME("HelpSearch"), EditorStringName(EditorIcons)), ED_GET_SHORTCUT("editor/editor_help"), HELP_SEARCH);
68876887
help_menu->add_separator();
68886888
help_menu->add_shortcut(ED_SHORTCUT_AND_COMMAND("editor/online_docs", TTR("Online Documentation")), HELP_DOCS);
6889-
help_menu->add_shortcut(ED_SHORTCUT_AND_COMMAND("editor/q&a", TTR("Questions & Answers")), HELP_QA);
6889+
help_menu->add_shortcut(ED_SHORTCUT_AND_COMMAND("editor/forum", TTR("Forum")), HELP_FORUM);
68906890
help_menu->add_shortcut(ED_SHORTCUT_AND_COMMAND("editor/community", TTR("Community")), HELP_COMMUNITY);
68916891
help_menu->add_separator();
68926892
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);

editor/editor_node.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ class EditorNode : public Node {
226226
HELP_SEARCH,
227227
HELP_COMMAND_PALETTE,
228228
HELP_DOCS,
229-
HELP_QA,
229+
HELP_FORUM,
230230
HELP_REPORT_A_BUG,
231231
HELP_COPY_SYSTEM_INFO,
232232
HELP_SUGGEST_A_FEATURE,

0 commit comments

Comments
 (0)