fix division by zero when prompt completion area is too small (#9524)
This commit is contained in:
parent
1d87c6a999
commit
a37af2dcbf
1 changed files with 1 additions and 1 deletions
|
@ -393,7 +393,7 @@ impl Prompt {
|
|||
height,
|
||||
);
|
||||
|
||||
if !self.completion.is_empty() {
|
||||
if completion_area.height > 0 && !self.completion.is_empty() {
|
||||
let area = completion_area;
|
||||
let background = theme.get("ui.menu");
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue