From d654743234bbb781545d484f461bdf48659ac686 Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Thu, 1 Aug 2024 13:00:01 -0400 Subject: [PATCH] fix: format of month can overflow bounds of panel if Long --- cosmic-applet-time/src/window.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cosmic-applet-time/src/window.rs b/cosmic-applet-time/src/window.rs index 113d305d..cce0c1e5 100644 --- a/cosmic-applet-time/src/window.rs +++ b/cosmic-applet-time/src/window.rs @@ -366,7 +366,7 @@ impl cosmic::Application for Window { let mut date_bag = Bag::empty(); date_bag.day = Some(components::Day::NumericDayOfMonth); - date_bag.month = Some(components::Month::Long); + date_bag.month = Some(components::Month::Short); let formated = self.format(date_bag, &self.now);