ui: Only render menu scrollbar if it doesn't fit
This commit is contained in:
parent
094a0aa3f9
commit
f10a06f4de
1 changed files with 4 additions and 2 deletions
|
@ -304,12 +304,14 @@ impl<T: Item + 'static> Component for Menu<T> {
|
|||
},
|
||||
);
|
||||
|
||||
let fits = len <= win_height;
|
||||
|
||||
for (i, _) in (scroll..(scroll + win_height).min(len)).enumerate() {
|
||||
let is_marked = i >= scroll_line && i < scroll_line + scroll_height;
|
||||
|
||||
if is_marked {
|
||||
if !fits && is_marked {
|
||||
let cell = &mut surface[(area.x + area.width - 2, area.y + i as u16)];
|
||||
cell.set_symbol("▐ ");
|
||||
cell.set_symbol("▐");
|
||||
// cell.set_style(selected);
|
||||
// cell.set_style(if is_marked { selected } else { style });
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue