summaryrefslogtreecommitdiffstats
path: root/core/src/keyboard
diff options
context:
space:
mode:
authorLibravatar Wyatt Herkamp <wherkamp@gmail.com>2024-02-01 07:15:59 -0500
committerLibravatar Héctor Ramón Jiménez <hector@hecrj.dev>2024-02-09 01:53:34 +0100
commit149e8b4103008a8c1450c77a04e318097ddcbd22 (patch)
tree78aa8c4846338745cd5b751e7e1093c16b517f7b /core/src/keyboard
parent111c8bfa7965cad8fe7253c8601e620b8582eaaf (diff)
downloadiced-149e8b4103008a8c1450c77a04e318097ddcbd22.tar.gz
iced-149e8b4103008a8c1450c77a04e318097ddcbd22.tar.bz2
iced-149e8b4103008a8c1450c77a04e318097ddcbd22.zip
Update some dependencies
Diffstat (limited to 'core/src/keyboard')
-rw-r--r--core/src/keyboard/modifiers.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/keyboard/modifiers.rs b/core/src/keyboard/modifiers.rs
index bbdd8272..479fe6fb 100644
--- a/core/src/keyboard/modifiers.rs
+++ b/core/src/keyboard/modifiers.rs
@@ -2,7 +2,7 @@ use bitflags::bitflags;
bitflags! {
/// The current state of the keyboard modifiers.
- #[derive(Default)]
+ #[derive(Debug, Clone, Copy, PartialEq, Eq, Default)]
pub struct Modifiers: u32{
/// The "shift" key.
const SHIFT = 0b100;