From 6f1fbfdb600f0d0ec6c005aecd146d75350c4557 Mon Sep 17 00:00:00 2001 From: Tatesa Uradnik Date: Wed, 20 Aug 2025 18:16:37 +0200 Subject: [PATCH] feat(modifiers): add NONE --- core/src/keyboard/modifiers.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/keyboard/modifiers.rs b/core/src/keyboard/modifiers.rs index 00b31882..45b44a55 100644 --- a/core/src/keyboard/modifiers.rs +++ b/core/src/keyboard/modifiers.rs @@ -24,6 +24,8 @@ bitflags! { const LOGO = 0b100 << 9; // const LLOGO = 0b010 << 9; // const RLOGO = 0b001 << 9; + /// No modifiers + const NONE = 0; } }