From 08b19fce59e6fd2a689b906b798803e5f28b43eb Mon Sep 17 00:00:00 2001 From: Talin Date: Wed, 16 Jul 2025 18:27:27 -0700 Subject: [PATCH] Build fix. --- crates/bevy_feathers/src/cursor.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/bevy_feathers/src/cursor.rs b/crates/bevy_feathers/src/cursor.rs index 6d0bfc13c9..f1ac37a083 100644 --- a/crates/bevy_feathers/src/cursor.rs +++ b/crates/bevy_feathers/src/cursor.rs @@ -13,6 +13,8 @@ use bevy_picking::{hover::HoverMap, pointer::PointerId, PickingSystems}; use bevy_reflect::{std_traits::ReflectDefault, Reflect}; use bevy_window::{SystemCursorIcon, Window}; use bevy_winit::cursor::CursorIcon; +#[cfg(feature = "custom_cursor")] +use bevy_winit::cursor::CustomCursor; /// A component that specifies the cursor icon to be used when the mouse is not hovering over /// any other entity. This is used to set the default cursor icon for the window.