summaryrefslogtreecommitdiff
path: root/plugins/dwarf/dwarf_export
diff options
context:
space:
mode:
authorMason Reed <mason@vector35.com>2025-10-06 19:06:44 -0400
committerMason Reed <mason@vector35.com>2025-10-07 14:11:02 -0400
commitbbda2672f57de2f432222cf64b47f1f2631d3df7 (patch)
tree5a1b6a4d7e1309cc0cdc3c918469b50c925719c6 /plugins/dwarf/dwarf_export
parentc92e768dc938e8d9a9a5822222cef6fa52c454c9 (diff)
[Rust] Fix save file dialog not respecting default file path
Fixes https://github.com/Vector35/binaryninja-api/issues/7268
Diffstat (limited to 'plugins/dwarf/dwarf_export')
-rw-r--r--plugins/dwarf/dwarf_export/src/lib.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/plugins/dwarf/dwarf_export/src/lib.rs b/plugins/dwarf/dwarf_export/src/lib.rs
index 00a6175f..d1ac45ab 100644
--- a/plugins/dwarf/dwarf_export/src/lib.rs
+++ b/plugins/dwarf/dwarf_export/src/lib.rs
@@ -632,7 +632,6 @@ fn create_export_form(bv_arch: &str) -> Form {
form.add_field(FormInputField::SaveFileName {
prompt: "Save Location".to_string(),
extension: Some("Debug Files (*.dwo *.debug);;All Files (*)".to_string()),
- default_name: None,
default: None,
value: None,
});