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/script_traits/lib.rs | |
parent | 671b69c0b77f9a4bd0c098cb2a2f73c95dacb954 (diff) | |
download | servo-4ee9eb8563fc5842f7139bcd60a36468e4222fc0.tar.gz servo-4ee9eb8563fc5842f7139bcd60a36468e4222fc0.zip |
style: Move cursor property out of mako
Diffstat (limited to 'components/script_traits/lib.rs')
-rw-r--r-- | components/script_traits/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script_traits/lib.rs b/components/script_traits/lib.rs index 3159de3a5c2..e330c49d441 100644 --- a/components/script_traits/lib.rs +++ b/components/script_traits/lib.rs @@ -68,7 +68,7 @@ use std::sync::Arc; use std::sync::mpsc::{Receiver, Sender, RecvTimeoutError}; use style_traits::CSSPixel; use style_traits::SpeculativePainter; -use style_traits::cursor::Cursor; +use style_traits::cursor::CursorKind; use webdriver_msg::{LoadStatus, WebDriverScriptCommand}; use webrender_api::{ClipId, DevicePixel, DocumentId, ImageKey}; use webvr_traits::{WebVREvent, WebVRMsg}; @@ -807,7 +807,7 @@ pub enum ConstellationMsg { /// Forward an event to the script task of the given pipeline. ForwardEvent(PipelineId, CompositorEvent), /// Requesting a change to the onscreen cursor. - SetCursor(Cursor), + SetCursor(CursorKind), } /// Resources required by workerglobalscopes |