From 12dae071089137285a2b5f6f995dfcad3cb235f3 Mon Sep 17 00:00:00 2001 From: Danilo Leal <67129314+danilo-leal@users.noreply.github.com> Date: Wed, 29 Oct 2025 17:58:31 -0300 Subject: [PATCH] agent_ui: Fix history view background color when zoomed in (#41493) Release Notes: - N/A --- crates/agent_ui/src/acp/thread_history.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/agent_ui/src/acp/thread_history.rs b/crates/agent_ui/src/acp/thread_history.rs index d96c3b3219717b3ffa7310d207a323bc5fb222b0..9cfe30278e1e46d95c00b3c881358a4b00786801 100644 --- a/crates/agent_ui/src/acp/thread_history.rs +++ b/crates/agent_ui/src/acp/thread_history.rs @@ -450,6 +450,7 @@ impl Render for AcpThreadHistory { v_flex() .key_context("ThreadHistory") .size_full() + .bg(cx.theme().colors().panel_background) .on_action(cx.listener(Self::select_previous)) .on_action(cx.listener(Self::select_next)) .on_action(cx.listener(Self::select_first))