From 4913e084928c7e370a721ea49cb0a9aef3245b85 Mon Sep 17 00:00:00 2001 From: Daniel Eades Date: Sun, 14 Apr 2024 21:03:05 +0100 Subject: [PATCH] avoid cloning 'copy' types (clippy::clone_on_copy) --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index f490e85..6a370f1 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1524,7 +1524,7 @@ impl Application for App { move |result| { Message::ColorSchemeExportResult( color_scheme_kind, - color_scheme_id.clone(), + color_scheme_id, result, ) },