From 750e71c4b0154158dc01de18322a723ba2916c44 Mon Sep 17 00:00:00 2001 From: Julian Orth Date: Wed, 17 Sep 2025 16:38:01 +0200 Subject: [PATCH] theme: set min sizes to 0 --- src/theme.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/theme.rs b/src/theme.rs index ec92cb8b..787bc73f 100644 --- a/src/theme.rs +++ b/src/theme.rs @@ -427,8 +427,8 @@ macro_rules! sizes { } sizes! { - title_height = (1, 1000, 17), - border_width = (1, 1000, 4), + title_height = (0, 1000, 17), + border_width = (0, 1000, 4), } pub const DEFAULT_FONT: &str = "monospace 8";