summaryrefslogtreecommitdiffstats
path: root/graphics/src/widget/scrollable.rs
diff options
context:
space:
mode:
authorLibravatar Héctor Ramón <hector0193@gmail.com>2020-11-24 00:17:30 +0100
committerLibravatar GitHub <noreply@github.com>2020-11-24 00:17:30 +0100
commit5615643c5200ec98c5bb8ca992a67697d212ef5d (patch)
treed94fda43e3c7037208caf7645f9a9313b6aa02c4 /graphics/src/widget/scrollable.rs
parentea1a7248d257c7c9e4a1f3989e68b58a6bc0c4ff (diff)
parent1916755b6b3f84329c3e3f3e9a4e1b6d2b4e45a4 (diff)
downloadiced-5615643c5200ec98c5bb8ca992a67697d212ef5d.tar.gz
iced-5615643c5200ec98c5bb8ca992a67697d212ef5d.tar.bz2
iced-5615643c5200ec98c5bb8ca992a67697d212ef5d.zip
Merge pull request #628 from hecrj/improvement/float-border-radius
Use `f32` for `border_width` and `border_radius`
Diffstat (limited to '')
-rw-r--r--graphics/src/widget/scrollable.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/src/widget/scrollable.rs b/graphics/src/widget/scrollable.rs
index fed79c18..57065ba2 100644
--- a/graphics/src/widget/scrollable.rs
+++ b/graphics/src/widget/scrollable.rs
@@ -103,7 +103,7 @@ where
};
let is_scrollbar_visible =
- style.background.is_some() || style.border_width > 0;
+ style.background.is_some() || style.border_width > 0.0;
let scroller = if is_mouse_over
|| state.is_scroller_grabbed()