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