From 7067d048d66568739327b87ca74264f0f0b6b311 Mon Sep 17 00:00:00 2001 From: Nova Date: Sat, 19 Apr 2025 02:22:49 -0700 Subject: [PATCH] fix(input): cull capture *attempts*, not captures --- src/nodes/input/method.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nodes/input/method.rs b/src/nodes/input/method.rs index a736d70..4cdcd20 100644 --- a/src/nodes/input/method.rs +++ b/src/nodes/input/method.rs @@ -160,7 +160,7 @@ impl InputMethod { .iter() .filter_map(Weak::upgrade) .collect::>(); - self.captures.retain(|handler| { + self.capture_attempts.retain(|handler| { !handler .spatial .node()