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

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