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

Change file dialog all files filter name from All Files (*) to All Files(*.*).

This commit is contained in:
Pāvels Nadtočajevs
2024-11-24 20:09:05 +02:00
parent 0c45ace151
commit 1d43fa9a64
5 changed files with 6 additions and 6 deletions

View File

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