fix(gui): update wio dependency

This commit is contained in:
CJ van den Berg 2026-04-11 15:20:49 +02:00
parent fa7b2e1e0a
commit 63a7f30559
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
2 changed files with 3 additions and 3 deletions

View file

@ -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 = .{

View file

@ -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,
};
}