We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4ecca9 commit ada0872Copy full SHA for ada0872
1 file changed
src/main.rs
@@ -33,7 +33,7 @@ fn show_file_selection(siv: &mut Cursive) {
33
siv.add_layer(
34
Dialog::around(select.scrollable().fixed_size((40, 10)))
35
.title("My SSH Keys")
36
- .button("Quit", |s| s.quit())
+ .button("Quit", |s| s.quit()),
37
);
38
}
39
@@ -49,6 +49,6 @@ fn show_next_window(siv: &mut Cursive, file_path: &str) {
49
s.pop_layer();
50
show_file_selection(s);
51
})
52
53
54
0 commit comments