fix: drop spurious keybind_match events in tui.receive

This commit is contained in:
CJ van den Berg 2025-12-10 14:39:27 +01:00
parent b542707cf7
commit ef30ac9de0
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -500,6 +500,9 @@ fn receive_safe(self: *Self, from: tp.pid_ref, m: tp.message) !void {
if (try m.match(.{"focus_out"})) if (try m.match(.{"focus_out"}))
return; return;
if (try m.match(.{ "keybind_match", tp.more }))
return;
if (try self.send_widgets(from, m)) if (try self.send_widgets(from, m))
return; return;