--- # claudbg-e4ac title: 'TUI: selected agent highlights in agents widget when viewing agent transcript' status: completed type: feature priority: normal created_at: 2026-03-31T23:45:09Z updated_at: 2026-04-01T05:55:52Z --- When an agent transcript is being viewed, the corresponding agent entry in the agents widget panel should be highlighted/selected to show which agent is active. ## Summary of Changes In `render_transcript` (`src/tui/screens/transcript.rs`), changed the agent highlight condition to check two cases: `is_viewing` (current screen is `SubagentTranscript` with matching `agent_id`) OR `is_panel_selected` (index matches `subagent_selected` and panel has focus). The agent in view is always highlighted regardless of which panel has focus.