1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-06 12:20:30 +00:00

Merge pull request #99644 from bruvzg/fd_all_name

Change file dialog all files filter name from `All Files (*)` to `All Files (*.*)`.
This commit is contained in:
Rémi Verschelde
2024-12-02 17:20:23 +01:00
5 changed files with 6 additions and 6 deletions

View File

@@ -1204,7 +1204,7 @@ void EditorFileDialog::update_filters() {
}
}
String f = TTR("All Files (*)");
String f = TTR("All Files") + " (*.*)";
filter->add_item(f);
processed_filters.push_back("*.*;" + f);
}