From 4ebac333abd050ff7333a2bdc073680c93ba68d6 Mon Sep 17 00:00:00 2001 From: tison Date: Wed, 14 Aug 2024 17:26:59 +0800 Subject: [PATCH] chore!: revoke pub since we have setters new (#49) Signed-off-by: tison --- src/layout/text.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/layout/text.rs b/src/layout/text.rs index 9b5f1da..aacc4ad 100644 --- a/src/layout/text.rs +++ b/src/layout/text.rs @@ -46,9 +46,9 @@ use crate::layout::Layout; /// instance. Otherwise, the system timezone is used. #[derive(Default, Debug, Clone)] pub struct TextLayout { - pub colors: LevelColor, - pub no_color: bool, - pub tz: Option, + colors: LevelColor, + no_color: bool, + tz: Option, } impl TextLayout {