From 7c23d1377399d62eb8160097108d06e14be83cee Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Thu, 1 May 2025 17:40:10 -0400 Subject: [PATCH] agent: Render the max mode toggle using a muted color (#29763) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR updates the max mode toggle to use the muted color. This makes it fit in more with the rest of the controls. Screenshot 2025-05-01 at 5 24 01 PM Release Notes: - agent: Adjusted the color of the max mode toggle. --- crates/agent/src/message_editor.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/agent/src/message_editor.rs b/crates/agent/src/message_editor.rs index 924ed797660463809aa8fc9d9b066a97d3384afb..79790c7ac4db7d96fd9b9cdfa641b650c0d86a19 100644 --- a/crates/agent/src/message_editor.rs +++ b/crates/agent/src/message_editor.rs @@ -428,6 +428,7 @@ impl MessageEditor { Some( IconButton::new("max-mode", IconName::ZedMaxMode) .icon_size(IconSize::Small) + .icon_color(Color::Muted) .toggle_state(active_completion_mode == Some(CompletionMode::Max)) .on_click(cx.listener(move |this, _event, _window, cx| { this.thread.update(cx, |thread, _cx| {