feat: sunparts fixed length under time
All checks were successful
cargo devel CI / cargo CI (push) Successful in 1m17s

This commit is contained in:
Christoph J. Scherr 2024-07-10 01:49:50 +02:00
parent 893aab675e
commit 468a77da99

View file

@ -263,7 +263,7 @@ impl Clock {
fn partition(r: Rect) -> Vec<Rect> {
let part = Layout::default()
.direction(Direction::Vertical)
.constraints([Constraint::Percentage(43), Constraint::Min(0)])
.constraints([Constraint::Length(8), Constraint::Min(0)])
.split(r);
let subparts = Layout::default()
.direction(Direction::Horizontal)