From f4f9aab8a961303d3c723673d6417c37ce2b126c Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Wed, 3 Jan 2024 10:56:51 -0500 Subject: [PATCH] Remove `text_ui` So we don't regress from #3852. --- crates/editor2/src/editor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/editor2/src/editor.rs b/crates/editor2/src/editor.rs index ef8c7b8011995769ef58dae7e303fb5d754f81b8..8f15ca88ea28e796630bc978cd86c2a773221ca2 100644 --- a/crates/editor2/src/editor.rs +++ b/crates/editor2/src/editor.rs @@ -1266,7 +1266,7 @@ impl CompletionsMenu { ) .map(|task| task.detach_and_log_err(cx)); })) - .child(div().text_ui().child(completion_label)) + .child(completion_label) .end_slot::
(documentation_label), ) })