Skip to content

Commit 5c0c1ca

Browse files
committed
Merge pull request godotengine#106905 from timothyqiu/that-is-all
Remove parentheses around "All" option in the feature tag menu
2 parents 09c7214 + 126db3b commit 5c0c1ca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

editor/project_settings_editor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,7 +373,7 @@ void ProjectSettingsEditor::_add_feature_overrides() {
373373
}
374374

375375
feature_box->clear();
376-
feature_box->add_item(TTRC("(All)"), FEATURE_ALL); // So it is always on top.
376+
feature_box->add_item(TTRC("All"), FEATURE_ALL); // So it is always on top.
377377
feature_box->set_item_auto_translate_mode(-1, AUTO_TRANSLATE_MODE_ALWAYS);
378378
feature_box->add_item(TTRC("Custom"), FEATURE_CUSTOM);
379379
feature_box->set_item_auto_translate_mode(-1, AUTO_TRANSLATE_MODE_ALWAYS);

0 commit comments

Comments
 (0)