From 4167384c7cf3f91a9c6b65092aa6840a39d86e9f Mon Sep 17 00:00:00 2001 From: A-Walrus <58790821+A-Walrus@users.noreply.github.com> Date: Tue, 13 Sep 2022 12:24:48 +0300 Subject: [PATCH] Remove border from code actions popup (#3444) --- helix-term/src/commands/lsp.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/helix-term/src/commands/lsp.rs b/helix-term/src/commands/lsp.rs index 61eed63874eb8..1113b44ecdf7f 100644 --- a/helix-term/src/commands/lsp.rs +++ b/helix-term/src/commands/lsp.rs @@ -491,8 +491,7 @@ pub fn code_action(cx: &mut Context) { }); picker.move_down(); // pre-select the first item - let popup = - Popup::new("code-action", picker).margin(helix_view::graphics::Margin::all(1)); + let popup = Popup::new("code-action", picker); compositor.replace_or_push("code-action", popup); }, )