Merge pull request #3037 from janTatesa/add_none_to_modifiers

Add `NONE` to `keyboard::Modifiers`
This commit is contained in:
Héctor 2025-11-29 14:16:36 +01:00 committed by GitHub
commit 158cc96141
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -24,6 +24,8 @@ bitflags! {
const LOGO = 0b100 << 9;
// const LLOGO = 0b010 << 9;
// const RLOGO = 0b001 << 9;
/// No modifiers
const NONE = 0;
}
}