Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
maxomatic458 committed Apr 14, 2024
1 parent 883c48e commit b688564
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/menu/ide_menu.rs
Original file line number Diff line number Diff line change
Expand Up @@ -818,7 +818,8 @@ impl Menu for IdeMenu {
}

fn menu_required_lines(&self, _terminal_columns: u16) -> u16 {
self.get_rows().min(self.default_details.max_completion_height)
self.get_rows()
.min(self.default_details.max_completion_height)
}

fn menu_string(&self, available_lines: u16, use_ansi_coloring: bool) -> String {
Expand Down

0 comments on commit b688564

Please sign in to comment.