Skip to content

Commit ada0872

Browse files
committed
Update main.rs
1 parent c4ecca9 commit ada0872

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ fn show_file_selection(siv: &mut Cursive) {
3333
siv.add_layer(
3434
Dialog::around(select.scrollable().fixed_size((40, 10)))
3535
.title("My SSH Keys")
36-
.button("Quit", |s| s.quit())
36+
.button("Quit", |s| s.quit()),
3737
);
3838
}
3939

@@ -49,6 +49,6 @@ fn show_next_window(siv: &mut Cursive, file_path: &str) {
4949
s.pop_layer();
5050
show_file_selection(s);
5151
})
52-
.button("Quit", |s| s.quit())
52+
.button("Quit", |s| s.quit()),
5353
);
5454
}

0 commit comments

Comments
 (0)