Rename transparentize to scale_alpha

This commit is contained in:
Héctor Ramón Jiménez 2024-03-08 13:40:10 +01:00
parent 288025f514
commit 3e99f39a86
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
4 changed files with 24 additions and 18 deletions

View file

@ -537,7 +537,7 @@ pub fn text(theme: &Theme, status: Status) -> Appearance {
match status {
Status::Active | Status::Pressed => base,
Status::Hovered => Appearance {
text_color: palette.background.base.text.transparentize(0.8),
text_color: palette.background.base.text.scale_alpha(0.8),
..base
},
Status::Disabled => disabled(base),
@ -557,8 +557,8 @@ fn disabled(appearance: Appearance) -> Appearance {
Appearance {
background: appearance
.background
.map(|background| background.transparentize(0.5)),
text_color: appearance.text_color.transparentize(0.5),
.map(|background| background.scale_alpha(0.5)),
text_color: appearance.text_color.scale_alpha(0.5),
..appearance
}
}