File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
src/ElectronNET.API/API/Entities Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -115,10 +115,11 @@ public class BrowserWindowOptions
115115
116116 /// <summary>
117117 /// Whether the window can be put into fullscreen mode. On macOS, also whether the
118- /// maximize/zoom button should toggle full screen mode or maximize window.Default
119- /// is true.
118+ /// maximize/zoom button should toggle full screen mode or maximize window. Default
119+ /// is true (Electron default) .
120120 /// </summary>
121- public bool Fullscreenable { get ; set ; }
121+ [ DefaultValue ( true ) ]
122+ public bool Fullscreenable { get ; set ; } = true ; // FIX: previously defaulted to false in C#
122123
123124 /// <summary>
124125 /// Whether to show the window in taskbar. Default is false.
You can’t perform that action at this time.
0 commit comments