refactor(gui): log unhandled wio events

This commit is contained in:
CJ van den Berg 2026-04-09 16:42:02 +02:00
parent 4b4e2465c7
commit 2e0e8fd527
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -579,7 +579,9 @@ fn wioLoop() void {
held_buttons = .{};
tui_pid.send(.{"focus_out"}) catch {};
},
else => {},
else => {
std.log.debug("wio unhandled event: {}", .{event});
},
}
}