diff options
author | 2020-04-29 03:11:15 +0200 | |
---|---|---|
committer | 2020-04-29 03:11:15 +0200 | |
commit | 59403b6ca80081fa419fbef76c92397db68f1ab1 (patch) | |
tree | a9924f7d7c194a83027a44a1848f97f351bfd20a /examples/geometry | |
parent | 85dc07c3b00b4f6c40fcba571c067b941c868098 (diff) | |
download | iced-59403b6ca80081fa419fbef76c92397db68f1ab1.tar.gz iced-59403b6ca80081fa419fbef76c92397db68f1ab1.tar.bz2 iced-59403b6ca80081fa419fbef76c92397db68f1ab1.zip |
Remove `OutOfBounds` variant from `MouseCursor`
Diffstat (limited to 'examples/geometry')
-rw-r--r-- | examples/geometry/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/geometry/src/main.rs b/examples/geometry/src/main.rs index 795cac27..2a3efd4a 100644 --- a/examples/geometry/src/main.rs +++ b/examples/geometry/src/main.rs @@ -141,7 +141,7 @@ mod rainbow { }, }), }, - MouseCursor::OutOfBounds, + MouseCursor::default(), ) } } |