From 3ba624391f4ac89848d87e884e556931882105e4 Mon Sep 17 00:00:00 2001 From: Piotr Osiewicz <24362066+osiewicz@users.noreply.github.com> Date: Tue, 25 Mar 2025 18:43:27 +0100 Subject: [PATCH] debugger ui: Make variable values muted by default (#27441) Closes #ISSUE Release Notes: - N/A --- crates/debugger_ui/src/session/running/variable_list.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/debugger_ui/src/session/running/variable_list.rs b/crates/debugger_ui/src/session/running/variable_list.rs index f75d785f3428d2d54354473da27026af9f8bdbee..7d4191410358b507ef99733ac155c5100823ea80 100644 --- a/crates/debugger_ui/src/session/running/variable_list.rs +++ b/crates/debugger_ui/src/session/running/variable_list.rs @@ -849,6 +849,7 @@ impl VariableList { .single_line() .truncate() .size(LabelSize::Small) + .color(Color::Muted) .when_some(variable_color, |this, color| { this.color(Color::from(color)) }),