From 8dfbafd345a61bfa597a0e11ab09aa0e1b34710b Mon Sep 17 00:00:00 2001 From: Abdelhakim Qbaich Date: Mon, 13 Oct 2025 12:49:42 -0400 Subject: [PATCH] Fix inconsistent font size in toolbar code actions (#40120) Release Notes: - N/A before after --- crates/editor/src/code_context_menus.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/crates/editor/src/code_context_menus.rs b/crates/editor/src/code_context_menus.rs index a89125a3aa..9f8de1ac45 100644 --- a/crates/editor/src/code_context_menus.rs +++ b/crates/editor/src/code_context_menus.rs @@ -1518,6 +1518,7 @@ impl CodeActionsMenu { this.child( h_flex() .overflow_hidden() + .when(is_quick_action_bar, |this| this.text_ui(cx)) .child(task.resolved_label.replace("\n", "")) .when(selected, |this| { this.text_color(colors.text_accent) @@ -1528,6 +1529,7 @@ impl CodeActionsMenu { this.child( h_flex() .overflow_hidden() + .when(is_quick_action_bar, |this| this.text_ui(cx)) .child("debug: ") .child(scenario.label.clone()) .when(selected, |this| {