From 63a7f30559de7d7f0ae9d11cad8648b50566b7e7 Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Sat, 11 Apr 2026 15:20:49 +0200 Subject: [PATCH] fix(gui): update wio dependency --- build.zig.zon | 4 ++-- src/gui/wio/input.zig | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.zig.zon b/build.zig.zon index 566d6ec6..944f33e1 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -43,8 +43,8 @@ .lazy = true, }, .wio = .{ - .url = "git+https://github.com/neurocyte/wio?ref=master#a5f4ccb81fb6bafa348196747a0051cc65e10db9", - .hash = "wio-0.0.0-8xHrr0MKBgAYo_rlL6A2llfOLjikoWrPdV6Aml3OOBwJ", + .url = "git+https://github.com/neurocyte/wio?ref=master#7e3182c0cd4579bb9d6b8cddb862396a3093e62f", + .hash = "wio-0.0.0-8xHrrzsKBgD1RO_CdfiIc_fe7Ye-Otk06-J1Fg_0o8_p", .lazy = true, }, .sokol = .{ diff --git a/src/gui/wio/input.zig b/src/gui/wio/input.zig index 601598ac..577a9bc2 100644 --- a/src/gui/wio/input.zig +++ b/src/gui/wio/input.zig @@ -14,7 +14,7 @@ pub fn fromWioModifiers(modifiers: wio.Modifiers) Mods { .shift = modifiers.shift, .alt = modifiers.alt, .ctrl = modifiers.control, - .super = modifiers.super, + .super = modifiers.gui, }; }