From 4b3cb5f6e40ebfa8cbc70e2e0083e91988ecac14 Mon Sep 17 00:00:00 2001 From: john li Date: Sun, 22 Aug 2021 16:44:09 -0400 Subject: [PATCH] fix truncated cpu history graph seems to have changed with tui 0.16.0 https://github.com/fdehau/tui-rs/pull/514 --- src/view.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/view.rs b/src/view.rs index 2ddabf6..2383361 100644 --- a/src/view.rs +++ b/src/view.rs @@ -204,7 +204,7 @@ impl<'a> ProcTable<'a> { Constraint::Length(5), Constraint::Length(5), Constraint::Length(4), - Constraint::Min(10), + Constraint::Percentage(100), ]) } }