Use regular info color for speaker borders (#4126)
This PR updates the speaker borders to use the regular `info` status color instead of the `info_border` color. This should provide more contrast and make it clearer as to who is speaking. Release Notes: - Made the active speakers' borders more visible when in a call.
This commit is contained in:
parent
49f8c1d67e
commit
7b9e7fea4e
1 changed files with 1 additions and 1 deletions
|
@ -486,7 +486,7 @@ impl CollabTitlebarItem {
|
||||||
Avatar::new(user.avatar_uri.clone())
|
Avatar::new(user.avatar_uri.clone())
|
||||||
.grayscale(!is_present)
|
.grayscale(!is_present)
|
||||||
.border_color(if is_speaking {
|
.border_color(if is_speaking {
|
||||||
cx.theme().status().info_border
|
cx.theme().status().info
|
||||||
} else {
|
} else {
|
||||||
// We draw the border in a transparent color rather to avoid
|
// We draw the border in a transparent color rather to avoid
|
||||||
// the layout shift that would come with adding/removing the border.
|
// the layout shift that would come with adding/removing the border.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue