fix: missed one corner radius in segmented buttons
This commit is contained in:
parent
310064ca1d
commit
696437506c
1 changed files with 3 additions and 1 deletions
|
|
@ -67,7 +67,9 @@ impl StyleSheet for Theme {
|
|||
inactive: ItemStatusAppearance {
|
||||
background: Some(Background::Color(neutral_5.into())),
|
||||
first: ItemAppearance {
|
||||
border_radius: BorderRadius::from([rad_m[0], rad_0[1], rad_0[2], 24.0]),
|
||||
border_radius: BorderRadius::from([
|
||||
rad_m[0], rad_0[1], rad_0[2], rad_m[3],
|
||||
]),
|
||||
..Default::default()
|
||||
},
|
||||
middle: ItemAppearance {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue