feat(term): wrap command palette in overlay (#2378)

Looks better and is consistent with the rest, nothing else.
pull/2384/head
Matouš Dzivjak 2022-05-03 10:28:41 +02:00 committed by GitHub
parent 042463a4d1
commit d2b1add1f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2219,7 +2219,7 @@ pub fn command_palette(cx: &mut Context) {
command.execute(&mut ctx); command.execute(&mut ctx);
}, },
); );
compositor.push(Box::new(picker)); compositor.push(Box::new(overlayed(picker)));
}, },
)); ));
} }