From 126db3b158a1c8b8db0dbd3d428cd3d38ef2358f Mon Sep 17 00:00:00 2001 From: Haoyu Qiu Date: Wed, 28 May 2025 14:49:24 +0800 Subject: [PATCH] Remove parentheses around "All" option in the feature tag menu --- editor/project_settings_editor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/project_settings_editor.cpp b/editor/project_settings_editor.cpp index 1b96c602af..ddf4fa6be7 100644 --- a/editor/project_settings_editor.cpp +++ b/editor/project_settings_editor.cpp @@ -338,7 +338,7 @@ void ProjectSettingsEditor::_add_feature_overrides() { } feature_box->clear(); - feature_box->add_item(TTRC("(All)"), FEATURE_ALL); // So it is always on top. + feature_box->add_item(TTRC("All"), FEATURE_ALL); // So it is always on top. feature_box->set_item_auto_translate_mode(-1, AUTO_TRANSLATE_MODE_ALWAYS); feature_box->add_item(TTRC("Custom"), FEATURE_CUSTOM); feature_box->set_item_auto_translate_mode(-1, AUTO_TRANSLATE_MODE_ALWAYS);