From a7a4cd7eacbef5b50984d92c4ff6ff4acf3ee88a Mon Sep 17 00:00:00 2001 From: open-trade Date: Fri, 7 Jan 2022 18:05:33 +0800 Subject: [PATCH] CI --- libs/enigo/src/linux.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/enigo/src/linux.rs b/libs/enigo/src/linux.rs index 2fe5d2205..be21a2c70 100644 --- a/libs/enigo/src/linux.rs +++ b/libs/enigo/src/linux.rs @@ -182,7 +182,7 @@ impl MouseControllable for Enigo { } fn keysequence<'a>(key: Key) -> Cow<'a, str> { if let Key::KeySym(sym) = key { - return Cow::Owned(""); + return Cow::Owned("".to_owned()); } if let Key::Layout(c) = key { return Cow::Owned(format!("U{:X}", c as u32));