ui: menu: Don't allocate scrollbar space if options fit
This commit is contained in:
parent
f10a06f4de
commit
36b975c4ce
1 changed files with 11 additions and 3 deletions
|
@ -139,7 +139,17 @@ impl<T: Item> Menu<T> {
|
|||
|
||||
acc
|
||||
});
|
||||
let len = max_lens.iter().sum::<usize>() + n + 1; // +1: reserve some space for scrollbar
|
||||
|
||||
let height = self.matches.len().min(10).min(viewport.1 as usize);
|
||||
// do all the matches fit on a single screen?
|
||||
let fits = self.matches.len() <= height;
|
||||
|
||||
let mut len = max_lens.iter().sum::<usize>() + n;
|
||||
|
||||
if !fits {
|
||||
len += 1; // +1: reserve some space for scrollbar
|
||||
}
|
||||
|
||||
let width = len.min(viewport.0 as usize);
|
||||
|
||||
self.widths = max_lens
|
||||
|
@ -147,8 +157,6 @@ impl<T: Item> Menu<T> {
|
|||
.map(|len| Constraint::Length(len as u16))
|
||||
.collect();
|
||||
|
||||
let height = self.matches.len().min(10).min(viewport.1 as usize);
|
||||
|
||||
self.size = (width as u16, height as u16);
|
||||
|
||||
// adjust scroll offsets if size changed
|
||||
|
|
Loading…
Reference in a new issue