diff options
author | Igor Gutorov <igootorov@gmail.com> | 2018-01-15 16:21:44 +0200 |
---|---|---|
committer | Igor Gutorov <igootorov@gmail.com> | 2018-01-20 19:06:29 +0200 |
commit | 4ee9eb8563fc5842f7139bcd60a36468e4222fc0 (patch) | |
tree | 245aacd9fd013d16311ef6bb575ada4f02fd73fb /components/gfx/display_list/mod.rs | |
parent | 671b69c0b77f9a4bd0c098cb2a2f73c95dacb954 (diff) | |
download | servo-4ee9eb8563fc5842f7139bcd60a36468e4222fc0.tar.gz servo-4ee9eb8563fc5842f7139bcd60a36468e4222fc0.zip |
style: Move cursor property out of mako
Diffstat (limited to 'components/gfx/display_list/mod.rs')
-rw-r--r-- | components/gfx/display_list/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/gfx/display_list/mod.rs b/components/gfx/display_list/mod.rs index edde7e118f7..d481ef17017 100644 --- a/components/gfx/display_list/mod.rs +++ b/components/gfx/display_list/mod.rs @@ -30,7 +30,7 @@ use std::f32; use std::fmt; use std::sync::Arc; use style::values::computed::Filter; -use style_traits::cursor::Cursor; +use style_traits::cursor::CursorKind; use text::TextRun; use text::glyph::ByteIndex; use webrender_api::{BoxShadowClipMode, ClipId, ColorF, ExtendMode, GradientStop, ImageKey}; @@ -646,7 +646,7 @@ pub struct DisplayItemMetadata { pub node: OpaqueNode, /// The value of the `cursor` property when the mouse hovers over this display item. If `None`, /// this display item is ineligible for pointer events (`pointer-events: none`). - pub pointing: Option<Cursor>, + pub pointing: Option<CursorKind>, } /// Paints a solid color. |