fix: restore width and height fill for app content

This commit is contained in:
Hojjat 2026-03-20 14:33:40 -06:00 committed by Michael Murphy
parent 36cba695d2
commit 7a56762422

View file

@ -742,6 +742,8 @@ impl<App: Application> 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 {