diff options
Diffstat (limited to 'src/window_builder.rs')
-rw-r--r-- | src/window_builder.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/window_builder.rs b/src/window_builder.rs index 21787e6..6761b8d 100644 --- a/src/window_builder.rs +++ b/src/window_builder.rs @@ -10,6 +10,7 @@ pub struct WindowBuilder { pub cursor: Option<CursorIcon>, pub icon: Option<Icon>, pub fullscreen: bool, + pub visible: bool, } impl WindowBuilder { @@ -23,6 +24,7 @@ impl WindowBuilder { cursor: None, icon: None, fullscreen: false, + visible: true, } } } |