From 8d08a1e4497762f4dec87b1838dbf094569a452d Mon Sep 17 00:00:00 2001 From: Gerrit Viljoen Date: Wed, 1 Apr 2020 22:14:08 +0200 Subject: [PATCH] save game --- src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index 7bd5ab1..747693b 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -89,7 +89,8 @@ const EW: &str = "─"; const DEFAULT_ALIGN: Align = Align::Left; const DEFAULT_COLUMN: Column = Column { header: String::new(), - align: DEFAULT_ALIGN + align: DEFAULT_ALIGN, + max_width: usize::max_value() }; #[derive(Clone, Debug, Eq, PartialEq)]