fix(input): cull capture *attempts*, not captures

This commit is contained in:
Nova
2025-04-19 02:22:49 -07:00
parent 18bbc787e6
commit d071c994d0

View File

@@ -160,7 +160,7 @@ impl InputMethod {
.iter()
.filter_map(Weak::upgrade)
.collect::<Registry<InputHandler>>();
self.captures.retain(|handler| {
self.capture_attempts.retain(|handler| {
!handler
.spatial
.node()