From 10c3c088fe63525b0301648304f14610cffb4585 Mon Sep 17 00:00:00 2001 From: xdBronch <51252236+xdBronch@users.noreply.github.com> Date: Fri, 6 Feb 2026 19:36:46 -0500 Subject: [PATCH] editor: Propagate `buffer_font_features` to signatureHelp popover (#48653) Closes #48596 Release Notes: - N/A --- crates/editor/src/signature_help.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/editor/src/signature_help.rs b/crates/editor/src/signature_help.rs index da9f857fad902c58b62881bbcaa7fc435be513a6..8f246089299f6f35bca14867c298e1f159765c6e 100644 --- a/crates/editor/src/signature_help.rs +++ b/crates/editor/src/signature_help.rs @@ -248,6 +248,7 @@ impl Editor { color: cx.theme().colors().text, font_family: settings.buffer_font.family.clone(), font_fallbacks: settings.buffer_font.fallbacks.clone(), + font_features: settings.buffer_font.features.clone(), font_size: settings.buffer_font_size(cx).into(), font_weight: settings.buffer_font.weight, line_height: relative(settings.buffer_line_height.value()),