Skip to content

Commit

Permalink
Run cargo clippy --fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bash committed May 2, 2024
1 parent b0cc298 commit ef2e15d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/send.rs
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ fn show_transmit_code(ui: &mut Ui, code: &Code, send_request: &SendRequest) {
.clicked()
|| ui.input_mut(|input| input.consume_key(Modifiers::COMMAND, Key::C))
{
ui.output_mut(|output| output.copied_text = code.0.clone());
ui.output_mut(|output| output.copied_text.clone_from(&code.0));
}

if ui
Expand Down

0 comments on commit ef2e15d

Please sign in to comment.