Unnamed repository; edit this file 'description' to name the repository.
feat(term): wrap command palette in overlay (#2378)
Looks better and is consistent with the rest, nothing else.
Matouš Dzivjak 2022-05-03
parent 042463a · commit d2b1add
-rw-r--r--helix-term/src/commands.rs2
1 files changed, 1 insertions, 1 deletions
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)));
},
));
}