From ae5e25377daa04e076fa67c7abd614401286a77e Mon Sep 17 00:00:00 2001 From: w1nst0n Date: Sat, 14 Jan 2023 17:52:11 +0100 Subject: [PATCH] chg: round off the corners of the scrollbars set border_radius to 5 --- src/gui/style.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/style.rs b/src/gui/style.rs index a8917e7..0e76a19 100644 --- a/src/gui/style.rs +++ b/src/gui/style.rs @@ -182,7 +182,7 @@ impl scrollable::StyleSheet for Theme { border_color: Color::TRANSPARENT, scroller: scrollable::Scroller { color: self.palette().base.foreground, - border_radius: 0.0, + border_radius: 5.0, border_width: 0.0, border_color: Color::TRANSPARENT, },