]> git.proxmox.com Git - pve-installer.git/commitdiff
tui: left-align cell values in summary view
authorChristoph Heiss <c.heiss@proxmox.com>
Mon, 19 Jun 2023 10:32:52 +0000 (12:32 +0200)
committerThomas Lamprecht <t.lamprecht@proxmox.com>
Mon, 19 Jun 2023 11:39:31 +0000 (13:39 +0200)
Signed-off-by: Christoph Heiss <c.heiss@proxmox.com>
proxmox-tui-installer/src/views/table_view.rs

index 8fb4563fec75eb51bfa39bb04438c49bdce18c90..6563242c60be13250a4484b5802a439a95f204ff 100644 (file)
@@ -51,7 +51,7 @@ impl<T: TableViewItem> TableView<T> {
         let mut start = Vec2::zero();
 
         for item in items {
-            p.print(start + ((width - item.len()) / 2, 0), &item);
+            p.print(start + (2, 0), &item);
 
             start.x += width;
             p.print(start, "┆");