diff options
Diffstat (limited to 'widget/src/scrollable.rs')
-rw-r--r-- | widget/src/scrollable.rs | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/widget/src/scrollable.rs b/widget/src/scrollable.rs index f736d92e..12e23def 100644 --- a/widget/src/scrollable.rs +++ b/widget/src/scrollable.rs @@ -1,5 +1,5 @@ //! Navigate an endless amount of content with a scrollbar. -use crate::container; +// use crate::container; use crate::core::event::{self, Event}; use crate::core::keyboard; use crate::core::layout; @@ -917,11 +917,11 @@ pub fn draw<Theme, Renderer>( } }; - container::draw_background( - renderer, - &appearance.container, - layout.bounds(), - ); + // container::draw_background( + // renderer, + // &appearance.container, + // layout.bounds(), + // ); // Draw inner content if scrollbars.active() { |