diff --git a/crates/collab_ui/src/collab_titlebar_item.rs b/crates/collab_ui/src/collab_titlebar_item.rs index 71a62b68ee1bada71be8d1002b2cc91654feba0d..117411b8d443b7022ee80d8f2459562c08ca0135 100644 --- a/crates/collab_ui/src/collab_titlebar_item.rs +++ b/crates/collab_ui/src/collab_titlebar_item.rs @@ -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(), )