From 2e0e8fd52749e6188945adeb5fbf9d69cdeac422 Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Thu, 9 Apr 2026 16:42:02 +0200 Subject: [PATCH] refactor(gui): log unhandled wio events --- src/gui/wio/app.zig | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/gui/wio/app.zig b/src/gui/wio/app.zig index 0cd9edcd..02cf70b5 100644 --- a/src/gui/wio/app.zig +++ b/src/gui/wio/app.zig @@ -579,7 +579,9 @@ fn wioLoop() void { held_buttons = .{}; tui_pid.send(.{"focus_out"}) catch {}; }, - else => {}, + else => { + std.log.debug("wio unhandled event: {}", .{event}); + }, } }