mirror of
https://github.com/helix-editor/helix.git
synced 2024-11-22 09:26:19 +04:00
fix division by zero when prompt completion area is too small (#9524)
This commit is contained in:
parent
1d87c6a999
commit
a37af2dcbf
@ -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");
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user