From 66817b5dc1efc36257862d0d559934b2ce63e3f1 Mon Sep 17 00:00:00 2001 From: Julian Orth Date: Wed, 17 Apr 2024 15:36:32 +0200 Subject: [PATCH] all: fix clippy lints --- toml-config/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toml-config/src/lib.rs b/toml-config/src/lib.rs index 16738249..b56fe396 100644 --- a/toml-config/src/lib.rs +++ b/toml-config/src/lib.rs @@ -590,7 +590,7 @@ impl State { } self.persistent .seat - .bind_masked(shortcut.mask, shortcut.keysym, move || f()); + .bind_masked(shortcut.mask, shortcut.keysym, f); binds.insert(shortcut.keysym); } }