We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa483eb commit 1815951Copy full SHA for 1815951
1 file changed
src/ElectronNET.API/API/Entities/BrowserWindowOptions.cs
@@ -115,10 +115,11 @@ public class BrowserWindowOptions
115
116
/// <summary>
117
/// 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.
+ /// maximize/zoom button should toggle full screen mode or maximize window. Default
+ /// is true (Electron default).
120
/// </summary>
121
- public bool Fullscreenable { get; set; }
+ [DefaultValue(true)]
122
+ public bool Fullscreenable { get; set; } = true; // FIX: previously defaulted to false in C#
123
124
125
/// Whether to show the window in taskbar. Default is false.
0 commit comments