Skip to content

Commit

Permalink
missed one clippy when removing &*text
Browse files Browse the repository at this point in the history
  • Loading branch information
ntBre committed Jan 14, 2024
1 parent 199ea0c commit cd95394
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/drw.rs
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,7 @@ impl Drw {
utf8codepoint as u32,
) != 0;
if charexists {
let text = String::from((*text).clone());
let text = (*text).clone();
self.font_getexts(
curfont,
&text,
Expand Down

0 comments on commit cd95394

Please sign in to comment.