feat: add SSD support via config option

This commit is contained in:
nanowu 2025-08-07 17:19:31 +01:00 committed by nanuwo
parent 3e78eb2381
commit 9929fbbfdb
5 changed files with 42 additions and 15 deletions

View file

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