fox32: Set title of open file dialog

This commit is contained in:
ry755 2022-01-30 02:50:01 -08:00 committed by Ry
parent 6a319071c0
commit 3b9c7b8bee

View File

@ -38,6 +38,7 @@ impl DiskController {
.add_filter("f32 Binary", &["f32"])
.add_filter("Raw Binary", &["bin"])
.add_filter("All Files", &["*"])
.set_title(&format!("Select a file to mount"))
.pick_file();
match path {
Some(path) => Some(File::open(path).unwrap()),