1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +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

@@ -896,7 +896,7 @@ void FileDialog::update_filters() {
}
}
String f = atr(ETR("All Files")) + " (*)";
String f = atr(ETR("All Files")) + " (*.*)";
filter->add_item(f);
processed_filters.push_back("*.*;" + f);
}