From bdb89d470034fe41d4d6afda57375c3781dd8375 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Fri, 22 Dec 2023 21:25:31 -0500 Subject: [PATCH] Render tab bar tools as muted --- crates/workspace2/src/pane.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/crates/workspace2/src/pane.rs b/crates/workspace2/src/pane.rs index 893c522222..bcf36dfe18 100644 --- a/crates/workspace2/src/pane.rs +++ b/crates/workspace2/src/pane.rs @@ -381,6 +381,7 @@ impl Pane { .child( IconButton::new("plus", Icon::Plus) .icon_size(IconSize::Small) + .icon_color(Color::Muted) .on_click(cx.listener(|pane, _, cx| { let menu = ContextMenu::build(cx, |menu, _| { menu.action("New File", NewFile.boxed_clone()) @@ -402,6 +403,7 @@ impl Pane { .child( IconButton::new("split", Icon::Split) .icon_size(IconSize::Small) + .icon_color(Color::Muted) .on_click(cx.listener(|pane, _, cx| { let menu = ContextMenu::build(cx, |menu, _| { menu.action("Split Right", SplitRight.boxed_clone()) @@ -422,6 +424,7 @@ impl Pane { let zoomed = pane.is_zoomed(); IconButton::new("toggle_zoom", Icon::Maximize) .icon_size(IconSize::Small) + .icon_color(Color::Muted) .selected(zoomed) .selected_icon(Icon::Minimize) .on_click(cx.listener(|pane, _, cx| {