1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-11 13:10:58 +00:00

Merge pull request #106905 from timothyqiu/that-is-all

Remove parentheses around "All" option in the feature tag menu
This commit is contained in:
Rémi Verschelde
2025-06-06 17:37:25 +02:00

View File

@@ -373,7 +373,7 @@ void ProjectSettingsEditor::_add_feature_overrides() {
} }
feature_box->clear(); 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->set_item_auto_translate_mode(-1, AUTO_TRANSLATE_MODE_ALWAYS);
feature_box->add_item(TTRC("Custom"), FEATURE_CUSTOM); feature_box->add_item(TTRC("Custom"), FEATURE_CUSTOM);
feature_box->set_item_auto_translate_mode(-1, AUTO_TRANSLATE_MODE_ALWAYS); feature_box->set_item_auto_translate_mode(-1, AUTO_TRANSLATE_MODE_ALWAYS);