refactor: allow for transparent header

This commit is contained in:
Ashley Wulber 2026-06-19 00:48:09 -04:00 committed by Ashley Wulber
parent 9855d8b6fd
commit 46b25d4218
2 changed files with 9 additions and 2 deletions

View file

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