From 706cdb2afde5db1b29bd5e70dd89b29b72f56e05 Mon Sep 17 00:00:00 2001 From: Christoph Heiss Date: Mon, 19 Jun 2023 14:35:05 +0200 Subject: [PATCH] tui: round disk sizes when displaying Signed-off-by: Christoph Heiss Signed-off-by: Thomas Lamprecht --- proxmox-tui-installer/src/options.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxmox-tui-installer/src/options.rs b/proxmox-tui-installer/src/options.rs index 30a5b7e..ff5d94e 100644 --- a/proxmox-tui-installer/src/options.rs +++ b/proxmox-tui-installer/src/options.rs @@ -232,7 +232,7 @@ impl fmt::Display for Disk { // https://lists.proxmox.com/pipermail/pbs-devel/2023-May/006125.html write!( f, - "{} ({} GiB)", + "{} ({:.2} GiB)", self.path, (self.size as f64) / 1024. / 1024. / 1024. )