agent_ui: Fix double hint for keybinding (#56442)

Release Notes:

- N/A
This commit is contained in:
Ben Brandt 2026-05-11 18:13:31 +02:00 committed by GitHub
parent d77425fe9c
commit d9275898be
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -3767,9 +3767,10 @@ impl AgentPanel {
})
.item(
ContextMenuEntry::new("Zed Agent")
.when(is_agent_selected(Agent::NativeAgent), |this| {
this.action(Box::new(NewThread))
})
.when(
!showing_terminal && is_agent_selected(Agent::NativeAgent),
|this| this.action(Box::new(NewThread)),
)
.icon(IconName::ZedAgent)
.icon_color(Color::Muted)
.handler({
@ -3873,9 +3874,10 @@ impl AgentPanel {
entry = entry
.when(
is_agent_selected(Agent::Custom {
id: item.id.clone(),
}),
!showing_terminal
&& is_agent_selected(Agent::Custom {
id: item.id.clone(),
}),
|this| this.action(Box::new(NewThread)),
)
.icon_color(Color::Muted)