From f26992e41a7a68aafdd74db4b3c78560282f4e05 Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Tue, 22 Apr 2025 09:52:11 -0400 Subject: [PATCH] fix(time): popup initial wrong size --- 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 d3558c7e..f150a6b4 100644 --- a/cosmic-applet-time/src/window.rs +++ b/cosmic-applet-time/src/window.rs @@ -325,7 +325,7 @@ impl cosmic::Application for Window { height: height.max(1.) as i32, }; - popup_settings.positioner.size = Some((300, 500)); + popup_settings.positioner.size = None; get_popup(popup_settings) }