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

View File

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