aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src
diff options
context:
space:
mode:
authorMatouš Dzivjak2022-05-03 08:28:41 +0000
committerGitHub2022-05-03 08:28:41 +0000
commitd2b1add1f41c9d9a655a4637e3e276eb92e8eefb (patch)
tree8e86ae80d1a268ab89df1fa6e29a5f32257a67ef /helix-term/src
parent042463a4d1c6eab144b89f775d79759bd6c3df0a (diff)
feat(term): wrap command palette in overlay (#2378)
Looks better and is consistent with the rest, nothing else.
Diffstat (limited to 'helix-term/src')
-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)));
},
));
}