From 334bdd0efcf6f4a3f3cf87bedca4550e8e8e603e Mon Sep 17 00:00:00 2001 From: Agus Zubiaga Date: Wed, 6 Aug 2025 10:39:55 -0300 Subject: [PATCH] Fix acp thread entry width (#35723) Release Notes: - N/A --- crates/agent_ui/src/acp/thread_view.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/agent_ui/src/acp/thread_view.rs b/crates/agent_ui/src/acp/thread_view.rs index 43587e7490..4566e9af52 100644 --- a/crates/agent_ui/src/acp/thread_view.rs +++ b/crates/agent_ui/src/acp/thread_view.rs @@ -866,6 +866,7 @@ impl AcpThreadView { let is_generating = matches!(thread.read(cx).status(), ThreadStatus::Generating); if index == total_entries - 1 && !is_generating { v_flex() + .w_full() .child(primary) .child(self.render_thread_controls(cx)) .into_any_element()