aboutsummaryrefslogtreecommitdiffstats
path: root/components/util/cursor.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/util/cursor.rs')
-rw-r--r--components/util/cursor.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/util/cursor.rs b/components/util/cursor.rs
index 622845deaa7..8e4ca9e3c1c 100644
--- a/components/util/cursor.rs
+++ b/components/util/cursor.rs
@@ -9,7 +9,7 @@ use std::ascii::AsciiExt;
macro_rules! define_cursor {
($( $css: expr => $variant: ident = $value: expr, )+) => {
- #[derive(Clone, Copy, PartialEq, Eq, Debug)]
+ #[derive(Clone, Copy, PartialEq, Eq, Debug, Deserialize, Serialize)]
#[repr(u8)]
pub enum Cursor {
$( $variant = $value ),+