Clear key state overlay on "ignore" action

This commit is contained in:
Caleb Spare
2026-02-28 23:35:28 -08:00
parent 25f12080cb
commit 0ccaf3d5d6

View File

@@ -2973,6 +2973,9 @@ fn maybeHandleBinding(
// If our action was "ignore" then we return the special input
// effect of "ignored".
for (actions) |action| if (action == .ignore) {
// If we're in a sequence, clear it.
self.endKeySequence(.drop, .retain);
return .ignored;
};
}