mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-11 21:13:02 +00:00
fix format
This commit is contained in:
parent
d2279674a7
commit
15d2f19b4a
1 changed files with 10 additions and 3 deletions
|
@ -106,9 +106,16 @@ impl View for CollabTitlebarItem {
|
||||||
.with_child(left_container)
|
.with_child(left_container)
|
||||||
.with_child(
|
.with_child(
|
||||||
Flex::row()
|
Flex::row()
|
||||||
.with_child(right_container.contained().with_background_color(
|
.with_child(
|
||||||
theme.workspace.titlebar.container.background_color.unwrap_or_else(|| Color::transparent_black()),
|
right_container.contained().with_background_color(
|
||||||
))
|
theme
|
||||||
|
.workspace
|
||||||
|
.titlebar
|
||||||
|
.container
|
||||||
|
.background_color
|
||||||
|
.unwrap_or_else(|| Color::transparent_black()),
|
||||||
|
),
|
||||||
|
)
|
||||||
.aligned()
|
.aligned()
|
||||||
.right(),
|
.right(),
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue