diff options
Diffstat (limited to 'native/src/widget/scrollable.rs')
-rw-r--r-- | native/src/widget/scrollable.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/native/src/widget/scrollable.rs b/native/src/widget/scrollable.rs index fac8af9e..3ef737c0 100644 --- a/native/src/widget/scrollable.rs +++ b/native/src/widget/scrollable.rs @@ -199,7 +199,6 @@ impl<'a, Message, Renderer: crate::Renderer> Scrollable<'a, Message, Renderer> { Some(Scrollbar { outer_bounds, bounds: scrollbar_bounds, - margin: self.scrollbar_margin, scroller: Scroller { bounds: scroller_bounds, }, @@ -720,9 +719,6 @@ struct Scrollbar { /// The bounds of the [`Scrollbar`]. bounds: Rectangle, - /// The margin within the [`Scrollbar`]. - margin: u16, - /// The bounds of the [`Scroller`]. scroller: Scroller, } |