From c62d90c1d3367c5db817698b9f60200deebb5c58 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 00b3188292..45b44a5596 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; } }