refactor(gui): log unhandled wio events
This commit is contained in:
parent
4b4e2465c7
commit
2e0e8fd527
1 changed files with 3 additions and 1 deletions
|
|
@ -579,7 +579,9 @@ fn wioLoop() void {
|
||||||
held_buttons = .{};
|
held_buttons = .{};
|
||||||
tui_pid.send(.{"focus_out"}) catch {};
|
tui_pid.send(.{"focus_out"}) catch {};
|
||||||
},
|
},
|
||||||
else => {},
|
else => {
|
||||||
|
std.log.debug("wio unhandled event: {}", .{event});
|
||||||
|
},
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue