Add .obj to object select filter

Resolves #54
This commit is contained in:
Luke Street 2024-05-21 10:12:40 -06:00
parent 31e9c14681
commit dc0c170db9
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ pub fn config_ui(
Box::pin(
rfd::AsyncFileDialog::new()
.set_directory(&target_dir)
.add_filter("Object file", &["o", "elf"])
.add_filter("Object file", &["o", "elf", "obj"])
.pick_file(),
)
},