chore: clippy
Some checks are pending
/ cargo-fmtcheck (push) Waiting to run
/ cargo-clippy (push) Waiting to run
/ cargo-test (push) Waiting to run
/ appimage (push) Waiting to run

This commit is contained in:
Gabriele Musco 2024-09-05 23:05:32 +02:00
commit b62964c4bc

View file

@ -570,7 +570,7 @@ impl SimpleComponent for MainView {
let chooser = gtk::FileDialog::builder()
.modal(true)
.title("Choose a location for the exported profile")
.initial_name(&format!("{}.json", &prof.name))
.initial_name(format!("{}.json", &prof.name))
.accept_label("Export")
.build();
let root_win = self.root_win.clone();