From 15d2f19b4a18a1534219152d453127491883dd28 Mon Sep 17 00:00:00 2001 From: Mikayla Maki Date: Mon, 8 May 2023 08:55:20 -0700 Subject: [PATCH] fix format --- crates/collab_ui/src/collab_titlebar_item.rs | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/crates/collab_ui/src/collab_titlebar_item.rs b/crates/collab_ui/src/collab_titlebar_item.rs index 71a62b68ee..117411b8d4 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(), )