1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-11 13:10:58 +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

@@ -505,7 +505,7 @@ void DisplayServerWindows::_thread_fd_monitor(void *p_ud) {
}
if (filter_names.is_empty()) {
filter_exts.push_back(String("*.*").utf16());
filter_names.push_back((RTR("All Files") + " (*)").utf16());
filter_names.push_back((RTR("All Files") + " (*.*)").utf16());
}
Vector<COMDLG_FILTERSPEC> filters;