From a2f26b620d2559a9d18eb069ac7350fc256372d1 Mon Sep 17 00:00:00 2001 From: Hojjat Date: Fri, 20 Mar 2026 14:33:40 -0600 Subject: [PATCH] fix: restore width and height fill for app content --- src/app/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/app/mod.rs b/src/app/mod.rs index 47900107..5c0e95e4 100644 --- a/src/app/mod.rs +++ b/src/app/mod.rs @@ -742,6 +742,8 @@ impl ApplicationExt for App { })); let content: Element<_> = if content_container { content_col + .width(iced::Length::Fill) + .height(iced::Length::Fill) .apply(|w| id_container(w, iced_core::id::Id::new("COSMIC_content_container"))) .into() } else {