We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8c3232 commit 3cdb1a2Copy full SHA for 3cdb1a2
src/keyboard.rs
@@ -1701,6 +1701,8 @@ bitflags! {
1701
const ALT = 0b100 << 6;
1702
/// This is the "windows" key on PC and "command" key on Mac.
1703
const META = 0b100 << 9;
1704
+ #[deprecated = "use META instead"]
1705
+ const SUPER = Self::META.bits();
1706
}
1707
1708
@@ -1757,5 +1759,9 @@ bitflags! {
1757
1759
const RALT = 0b0010_0000;
1758
1760
const LMETA = 0b0100_0000;
1761
const RMETA = 0b1000_0000;
1762
+ #[deprecated = "use LMETA instead"]
1763
+ const LSUPER = Self::LMETA.bits();
1764
+ #[deprecated = "use RMETA instead"]
1765
+ const RSUPER = Self::RMETA.bits();
1766
1767
0 commit comments