Change summary
crates/collab_ui/src/collab_titlebar_item.rs | 13 ++++++++++---
1 file changed, 10 insertions(+), 3 deletions(-)
Detailed changes
@@ -106,9 +106,16 @@ impl View for CollabTitlebarItem {
.with_child(left_container)
.with_child(
Flex::row()
- .with_child(right_container.contained().with_background_color(
- theme.workspace.titlebar.container.background_color.unwrap_or_else(|| Color::transparent_black()),
- ))
+ .with_child(
+ right_container.contained().with_background_color(
+ theme
+ .workspace
+ .titlebar
+ .container
+ .background_color
+ .unwrap_or_else(|| Color::transparent_black()),
+ ),
+ )
.aligned()
.right(),
)