summaryrefslogtreecommitdiffstats
path: root/examples/custom_widget
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-04-29 03:11:15 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2020-04-29 03:11:15 +0200
commit59403b6ca80081fa419fbef76c92397db68f1ab1 (patch)
treea9924f7d7c194a83027a44a1848f97f351bfd20a /examples/custom_widget
parent85dc07c3b00b4f6c40fcba571c067b941c868098 (diff)
downloadiced-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.rs2
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(),
)
}
}