'maximized' in Settings is not working

Hi! The following code doesn’t produce a maximized window at startup.

I’m using 0.14.0. Does anyone can successfully maximize a window with that version?

Thanks!

pub fn main() → iced::Result {
    iced::application(App::boot, App::update, App::view)
        .theme(App::theme)
        .window(Settings {
            maximized: true,
            ..Settings::default()
        })
        .run()
}