ui: picker: Position count according to input bar
This commit is contained in:
parent
eb9ac0a743
commit
4167201344
1 changed files with 2 additions and 1 deletions
|
@ -410,6 +410,8 @@ impl<T: 'static> Component for Picker<T> {
|
|||
|
||||
// -- Render the input bar:
|
||||
|
||||
let area = Rect::new(inner.x + 1, inner.y, inner.width - 1, 1);
|
||||
|
||||
let count = format!("{}/{}", self.matches.len(), self.options.len());
|
||||
surface.set_stringn(
|
||||
(area.x + area.width).saturating_sub(count.len() as u16 + 1),
|
||||
|
@ -419,7 +421,6 @@ impl<T: 'static> Component for Picker<T> {
|
|||
text_style,
|
||||
);
|
||||
|
||||
let area = Rect::new(inner.x + 1, inner.y, inner.width - 1, 1);
|
||||
self.prompt.render(area, surface, cx);
|
||||
|
||||
// -- Separator
|
||||
|
|
Loading…
Add table
Reference in a new issue