fix: window corner handling

This commit is contained in:
Vukašin Vojinović 2025-10-03 18:19:19 +02:00 committed by Ashley Wulber
parent 5cd7742413
commit ad1672b881
5 changed files with 36 additions and 32 deletions

View file

@ -38,6 +38,7 @@ pub struct Window {
pub show_close: bool,
pub show_maximize: bool,
pub show_minimize: bool,
pub is_maximized: bool,
height: f32,
width: f32,
}
@ -141,6 +142,7 @@ impl Default for Core {
show_maximize: true,
show_minimize: true,
show_window_menu: false,
is_maximized: false,
height: 0.,
width: 0.,
},