Revert "agent_ui: Fix agent UI stealing focus on start up" (#46231)

Lukas Wirth created

Reverts zed-industries/zed#46088

This also made the new thread action no longer focus so this wasn't the
right way to address this

Change summary

crates/agent_ui/src/acp/thread_view.rs | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)

Detailed changes

crates/agent_ui/src/acp/thread_view.rs 🔗

@@ -736,9 +736,7 @@ impl AcpThreadView {
                             })
                         });
 
-                        if this.focus_handle(cx).is_focused(window) {
-                            this.message_editor.focus_handle(cx).focus(window, cx);
-                        }
+                        this.message_editor.focus_handle(cx).focus(window, cx);
 
                         cx.notify();
                     }