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 0a094ce117d..23ca2c0af4a 100644 --- a/components/util/cursor.rs +++ b/components/util/cursor.rs @@ -11,7 +11,7 @@ use text_writer::TextWriter; macro_rules! define_cursor { ($( $css: expr => $variant: ident = $value: expr, )+) => { - #[deriving(Clone, PartialEq, Eq, FromPrimitive, Show)] + #[deriving(Clone, Copy, PartialEq, Eq, FromPrimitive, Show)] #[repr(u8)] pub enum Cursor { $( $variant = $value ),+ |