diff options
Diffstat (limited to 'components/util/cursor.rs')
-rw-r--r-- | components/util/cursor.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/util/cursor.rs b/components/util/cursor.rs index ff203f1a0e7..4c6b61b38fe 100644 --- a/components/util/cursor.rs +++ b/components/util/cursor.rs @@ -10,7 +10,7 @@ use text_writer::TextWriter; macro_rules! define_cursor { ($( $css: expr => $variant: ident = $value: expr, )+) => { - #[derive(Clone, Copy, PartialEq, Eq, FromPrimitive, Show)] + #[derive(Clone, Copy, PartialEq, Eq, FromPrimitive, Debug)] #[repr(u8)] pub enum Cursor { $( $variant = $value ),+ |