fix: drop spurious keybind_match events in tui.receive
This commit is contained in:
parent
b542707cf7
commit
ef30ac9de0
1 changed files with 3 additions and 0 deletions
|
|
@ -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;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue