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

This commit is contained in:
Nova
2025-04-19 02:22:49 -07:00
parent ef09b69378
commit 7067d048d6

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()