Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderkjall committed Feb 9, 2024
1 parent 0b64af3 commit bac8f4c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cursive/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,9 @@ fn copy_first_line(ui: &mut Cursive, store: PasswordStoreType) {
helpers::set_clipboard(&String::new()).unwrap();
});
ui.call_on_name("status_bar", |l: &mut TextView| {
l.set_content(CATALOG.gettext("Copied first line of password to copy buffer for 40 seconds"));
l.set_content(
CATALOG.gettext("Copied first line of password to copy buffer for 40 seconds"),
);
});
}

Expand Down

0 comments on commit bac8f4c

Please sign in to comment.