diff options
author | 2020-04-29 03:11:15 +0200 | |
---|---|---|
committer | 2020-04-29 03:11:15 +0200 | |
commit | 59403b6ca80081fa419fbef76c92397db68f1ab1 (patch) | |
tree | a9924f7d7c194a83027a44a1848f97f351bfd20a /examples/integration | |
parent | 85dc07c3b00b4f6c40fcba571c067b941c868098 (diff) | |
download | iced-59403b6ca80081fa419fbef76c92397db68f1ab1.tar.gz iced-59403b6ca80081fa419fbef76c92397db68f1ab1.tar.bz2 iced-59403b6ca80081fa419fbef76c92397db68f1ab1.zip |
Remove `OutOfBounds` variant from `MouseCursor`
Diffstat (limited to 'examples/integration')
-rw-r--r-- | examples/integration/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/integration/src/main.rs b/examples/integration/src/main.rs index 7203d4b6..da571ed1 100644 --- a/examples/integration/src/main.rs +++ b/examples/integration/src/main.rs @@ -63,7 +63,7 @@ pub fn main() { let mut events = Vec::new(); let mut cache = Some(Cache::default()); let mut renderer = Renderer::new(&mut device, Settings::default()); - let mut output = (Primitive::None, MouseCursor::OutOfBounds); + let mut output = (Primitive::None, MouseCursor::default()); let clipboard = Clipboard::new(&window); // Initialize scene and GUI controls |