diff options
author | 2023-04-12 05:21:46 +0200 | |
---|---|---|
committer | 2023-04-12 05:21:46 +0200 | |
commit | c2cc9a835d8281c1d26c861ecac7991a924c3785 (patch) | |
tree | c070689f09abcb6ab56df501a79078dfc76e1222 /style/src/slider.rs | |
parent | 45cfce3f6dcf2773bc8ccc7e356906cb778f2f27 (diff) | |
download | iced-c2cc9a835d8281c1d26c861ecac7991a924c3785.tar.gz iced-c2cc9a835d8281c1d26c861ecac7991a924c3785.tar.bz2 iced-c2cc9a835d8281c1d26c861ecac7991a924c3785.zip |
Remove `border_width` support in `slider::Rail`
Diffstat (limited to '')
-rw-r--r-- | style/src/slider.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/style/src/slider.rs b/style/src/slider.rs index c143915e..bb36a176 100644 --- a/style/src/slider.rs +++ b/style/src/slider.rs @@ -19,10 +19,6 @@ pub struct Rail { pub size: f32, /// The border radius of the slider. pub border_radius: f32, - /// The border width of the slider. - pub border_width: f32, - /// The border [`Color`] of the slider. - pub border_color: Color, } /// The appearance of the handle of a slider. |