From d2b1add1f41c9d9a655a4637e3e276eb92e8eefb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matou=C5=A1=20Dzivjak?= Date: Tue, 3 May 2022 10:28:41 +0200 Subject: [PATCH] feat(term): wrap command palette in overlay (#2378) Looks better and is consistent with the rest, nothing else. --- helix-term/src/commands.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-term/src/commands.rs b/helix-term/src/commands.rs index e2d10d21..07d805ca 100644 --- a/helix-term/src/commands.rs +++ b/helix-term/src/commands.rs @@ -2219,7 +2219,7 @@ pub fn command_palette(cx: &mut Context) { command.execute(&mut ctx); }, ); - compositor.push(Box::new(picker)); + compositor.push(Box::new(overlayed(picker))); }, )); }