diff options
author | 2024-03-08 00:01:51 +0100 | |
---|---|---|
committer | 2024-03-08 00:01:51 +0100 | |
commit | 00e7035622fc2cd0abcdb3670c4d1a898213fe42 (patch) | |
tree | 059e1a4f40c6e162af8d85b4eae9b141a8d6d6c1 /widget/src | |
parent | 8fe7f9e4354fb46144b6dc459f1205fc87616259 (diff) | |
download | iced-00e7035622fc2cd0abcdb3670c4d1a898213fe42.tar.gz iced-00e7035622fc2cd0abcdb3670c4d1a898213fe42.tar.bz2 iced-00e7035622fc2cd0abcdb3670c4d1a898213fe42.zip |
Reduce default `Rail::width` of `Slider` widget
Diffstat (limited to 'widget/src')
-rw-r--r-- | widget/src/slider.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/widget/src/slider.rs b/widget/src/slider.rs index c37607a8..5c965af8 100644 --- a/widget/src/slider.rs +++ b/widget/src/slider.rs @@ -580,8 +580,8 @@ pub fn default(theme: &Theme, status: Status) -> Appearance { Appearance { rail: Rail { colors: (color, palette.secondary.base.color), - width: 6.0, - border_radius: 3.0.into(), + width: 4.0, + border_radius: 2.0.into(), }, handle: Handle { shape: HandleShape::Circle { radius: 7.0 }, |