From 8dd3d82d31801a0afbadfde8777e8df4fa7f200c Mon Sep 17 00:00:00 2001 From: Hibryda Date: Thu, 19 Mar 2026 09:21:21 +0100 Subject: [PATCH] fix(ui-gpui): re-enable start_blinking (was disabled for testing) --- ui-gpui/src/components/project_box.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui-gpui/src/components/project_box.rs b/ui-gpui/src/components/project_box.rs index 973a8a5..8131dbc 100644 --- a/ui-gpui/src/components/project_box.rs +++ b/ui-gpui/src/components/project_box.rs @@ -97,8 +97,9 @@ impl ProjectBox { AgentStatus::Error => DotStatus::Error, }; let dot = cx.new(|_cx| PulsingDot::new(dot_status, 8.0)); + // Start blinking AFTER entity registered (Zed BlinkManager pattern) + dot.update(cx, |d, cx| d.start_blinking(cx)); self.status_dot = Some(dot); - // NOTE: start_blinking NOT called yet — testing if app stays alive without it // Create agent pane with demo messages let agent_pane = cx.new(|_cx| {