mirror of
https://git.meli.delivery/meli/meli
synced 2024-11-17 03:26:20 +00:00
ui: hide divider column in VSplit if !self.show_divider
This commit is contained in:
parent
4629e6a22f
commit
1867bb6aa3
@ -67,7 +67,7 @@ fn main() {
|
||||
let listing = listing::Listing::from(IndexStyle::Compact);
|
||||
let b = Entity::from(Box::new(listing));
|
||||
let tabs = Box::new(Tabbed::new(vec![
|
||||
Box::new(VSplit::new(menu, b, 90, true)),
|
||||
Box::new(VSplit::new(menu, b, 90, false)),
|
||||
Box::new(AccountsPanel::new(&state.context)),
|
||||
Box::new(ContactList::default()),
|
||||
]));
|
||||
|
@ -253,9 +253,6 @@ impl Component for AccountMenu {
|
||||
self.dirty = false;
|
||||
let mut y = get_y(upper_left);
|
||||
for a in &self.accounts {
|
||||
for x in x..=x_max {
|
||||
grid[(x, y)].set_ch('━');
|
||||
}
|
||||
y += 1;
|
||||
y += self.print_account(grid, (set_y(upper_left, y), bottom_right), &a, context);
|
||||
}
|
||||
|
@ -200,7 +200,7 @@ impl Component for VSplit {
|
||||
} else {
|
||||
self.left.component.draw(
|
||||
grid,
|
||||
(upper_left, ((mid - 1), get_y(bottom_right))),
|
||||
(upper_left, (if self.show_divider { mid - 1 } else { mid }, get_y(bottom_right))),
|
||||
context,
|
||||
);
|
||||
self.right
|
||||
|
Loading…
Reference in New Issue
Block a user