From 85032784924b7aa2c0e41745d0227ba8ea8a6a9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Tue, 18 Nov 2025 23:05:30 +0100 Subject: [PATCH] Use `to_owned` instead of `to_string` in `iced_selector` --- selector/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/selector/src/lib.rs b/selector/src/lib.rs index 1f90ef8e..5c377276 100644 --- a/selector/src/lib.rs +++ b/selector/src/lib.rs @@ -165,7 +165,7 @@ pub fn is_focused() -> impl Selector { } fn description(&self) -> String { - "is focused".to_string() + "is focused".to_owned() } }