summaryrefslogtreecommitdiffstats
path: root/native/src/widget/scrollable.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-07-09 18:03:59 +0200
committerLibravatar Héctor Ramón Jiménez <hector0193@gmail.com>2022-07-09 18:03:59 +0200
commit2f76a10a1d3617e414fb33c0c6cd5cb7782197ad (patch)
treec5c1d4e9e29752abc15d1f3559369e42c1bbb772 /native/src/widget/scrollable.rs
parent33a24b58210c88571f789ee27495e3ee3a55e3a4 (diff)
downloadiced-2f76a10a1d3617e414fb33c0c6cd5cb7782197ad.tar.gz
iced-2f76a10a1d3617e414fb33c0c6cd5cb7782197ad.tar.bz2
iced-2f76a10a1d3617e414fb33c0c6cd5cb7782197ad.zip
Fix further `clippy` lints
... and explicitly annotate crates as well.
Diffstat (limited to '')
-rw-r--r--native/src/widget/scrollable.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/native/src/widget/scrollable.rs b/native/src/widget/scrollable.rs
index 5d550315..1b255860 100644
--- a/native/src/widget/scrollable.rs
+++ b/native/src/widget/scrollable.rs
@@ -662,7 +662,7 @@ where
shell: &mut Shell<'_, Message>,
) -> event::Status {
update(
- &mut self.state,
+ self.state,
event,
layout,
cursor_position,
@@ -693,7 +693,7 @@ where
renderer: &Renderer,
) -> mouse::Interaction {
mouse_interaction(
- &self.state,
+ self.state,
layout,
cursor_position,
self.scrollbar_width,
@@ -720,7 +720,7 @@ where
_viewport: &Rectangle,
) {
draw(
- &self.state,
+ self.state,
renderer,
theme,
layout,