summaryrefslogtreecommitdiff
path: root/src/window_controller.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/window_controller.rs')
-rw-r--r--src/window_controller.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/window_controller.rs b/src/window_controller.rs
index fe23f53..848730d 100644
--- a/src/window_controller.rs
+++ b/src/window_controller.rs
@@ -13,11 +13,10 @@ pub trait WindowController {
fn fullscreen(&self) -> bool { false }
fn pixel_scale(&self) -> NonZeroU32 { NON_ZERO_ONE }
- fn cursor_icon(&mut self) -> Option<CursorIcon> { None }
+ fn cursor(&mut self) -> Option<CursorIcon> { Some(CursorIcon::Default) }
fn render_request(&mut self) -> RenderRequest { RenderRequest::None }
fn is_visible(&self) -> bool { true }
- fn is_cursor_visible(&self) -> bool { true }
fn on_init(&mut self) {}
fn on_resize(&mut self, _size: Dimensions) {}