summaryrefslogtreecommitdiff
path: root/editor
diff options
context:
space:
mode:
authorHugo Locurcio <hugo.locurcio@hugo.pro>2023-01-14 00:12:24 +0100
committerHugo Locurcio <hugo.locurcio@hugo.pro>2023-01-16 10:20:40 +0100
commitea7baa4fdb8f5f50632085da78562f4ee35105b4 (patch)
tree4386bfffc043b635587198ac390076eb2155621b /editor
parent0f0b853c988f2c3ff322d8eaf97dd4f8d5de46c8 (diff)
Tweak fbx2gltf file filter to remove naming restriction
This relaxes the naming restriction on fbx2gltf binaries, as people may be renaming them then wondering why they've disappeared from the dialog unless they select "All Files (*)" as a filter.
Diffstat (limited to 'editor')
-rw-r--r--editor/fbx_importer_manager.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/editor/fbx_importer_manager.cpp b/editor/fbx_importer_manager.cpp
index dfea2e706a..2a005034a5 100644
--- a/editor/fbx_importer_manager.cpp
+++ b/editor/fbx_importer_manager.cpp
@@ -144,12 +144,8 @@ FBXImporterManager::FBXImporterManager() {
browse_dialog = memnew(EditorFileDialog);
browse_dialog->set_access(EditorFileDialog::ACCESS_FILESYSTEM);
browse_dialog->set_file_mode(EditorFileDialog::FILE_MODE_OPEN_FILE);
-#if defined(X11_ENABLED)
- browse_dialog->add_filter("FBX2glTF-linux-x86_64");
-#elif defined(OSX_ENABLED)
- browse_dialog->add_filter("FBX2glTF-macos-x86_64");
-#elif defined(WINDOWS_ENABLED)
- browse_dialog->add_filter("FBX2glTF-windows-x86_64");
+#ifdef WINDOWS_ENABLED
+ browse_dialog->add_filter("*.exe");
#endif
browse_dialog->connect("file_selected", callable_mp(this, &FBXImporterManager::_select_file));