fix division by zero when prompt completion area is too small (#9524)

This commit is contained in:
Diego 2024-02-06 14:45:57 +01:00 committed by GitHub
parent 1d87c6a999
commit a37af2dcbf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -393,7 +393,7 @@ pub fn render_prompt(&self, area: Rect, surface: &mut Surface, cx: &mut Context)
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");