diff options
Diffstat (limited to 'native')
-rw-r--r-- | native/src/mouse_cursor.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/native/src/mouse_cursor.rs b/native/src/mouse_cursor.rs index 0dad3edc..8bfa2b44 100644 --- a/native/src/mouse_cursor.rs +++ b/native/src/mouse_cursor.rs @@ -1,9 +1,6 @@ /// The state of the mouse cursor. #[derive(Debug, Eq, PartialEq, Clone, Copy, PartialOrd, Ord)] pub enum MouseCursor { - /// The cursor is out of the bounds of the user interface. - OutOfBounds, - /// The cursor is over a non-interactive widget. Idle, @@ -31,6 +28,6 @@ pub enum MouseCursor { impl Default for MouseCursor { fn default() -> MouseCursor { - MouseCursor::OutOfBounds + MouseCursor::Idle } } |