From fb0d2e948fed63b4d0c38bc7f7c86cc9a7c74c3e Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Wed, 1 May 2024 16:52:09 -0400 Subject: [PATCH] assistant2: Use new icon in status bar (#11268) This PR updates the new assistant to use the new (temporary) icon in the status bar to distinguish it. We added the icon in #11257, but hadn't wired it up. Release Notes: - N/A --- crates/assistant2/src/assistant2.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/assistant2/src/assistant2.rs b/crates/assistant2/src/assistant2.rs index ba7c607bd5..359f947f6d 100644 --- a/crates/assistant2/src/assistant2.rs +++ b/crates/assistant2/src/assistant2.rs @@ -202,7 +202,7 @@ impl Panel for AssistantPanel { } fn icon(&self, _cx: &WindowContext) -> Option<::ui::IconName> { - Some(IconName::Ai) + Some(IconName::ZedAssistant) } fn icon_tooltip(&self, _: &WindowContext) -> Option<&'static str> {