Use to_owned instead of to_string in iced_selector

This commit is contained in:
Héctor Ramón Jiménez 2025-11-18 23:05:30 +01:00
parent 1ae3b5e96a
commit 8503278492
No known key found for this signature in database
GPG key ID: 7CC46565708259A7

View file

@ -165,7 +165,7 @@ pub fn is_focused() -> impl Selector<Output = Target> {
}
fn description(&self) -> String {
"is focused".to_string()
"is focused".to_owned()
}
}