mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Change file dialog all files filter name from All Files (*)
to All Files(*.*)
.
This commit is contained in:
parent
0c45ace151
commit
1d43fa9a64
5 changed files with 6 additions and 6 deletions
|
@ -394,7 +394,7 @@ Error FreeDesktopPortalDesktop::file_dialog_show(DisplayServer::WindowID p_windo
|
|||
} else {
|
||||
if (flt == "*.*") {
|
||||
filter_exts.push_back("*");
|
||||
filter_names.push_back(RTR("All Files") + " (*)");
|
||||
filter_names.push_back(RTR("All Files") + " (*.*)");
|
||||
} else {
|
||||
filter_exts.push_back(flt);
|
||||
filter_names.push_back(flt);
|
||||
|
@ -405,7 +405,7 @@ Error FreeDesktopPortalDesktop::file_dialog_show(DisplayServer::WindowID p_windo
|
|||
}
|
||||
if (filter_names.is_empty()) {
|
||||
filter_exts.push_back("*");
|
||||
filter_names.push_back(RTR("All Files") + " (*)");
|
||||
filter_names.push_back(RTR("All Files") + " (*.*)");
|
||||
}
|
||||
|
||||
DBusError err;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue