Merge pull request #945 from softworkz/submit_outpath

BrowserWindowOptions; Fix default  and add more Tests
This commit is contained in:
Florian Rappl
2025-11-21 00:34:09 +01:00
committed by GitHub
2 changed files with 5 additions and 4 deletions

View File

@@ -22,7 +22,7 @@ jobs:
rid: linux-x64
- os: windows-2022
rid: win-x64
- os: macos-14
- os: macos-26
rid: osx-arm64
env:

View File

@@ -115,10 +115,11 @@ namespace ElectronNET.API.Entities
/// <summary>
/// Whether the window can be put into fullscreen mode. On macOS, also whether the
/// maximize/zoom button should toggle full screen mode or maximize window.Default
/// is true.
/// maximize/zoom button should toggle full screen mode or maximize window. Default
/// is true (Electron default).
/// </summary>
public bool Fullscreenable { get; set; }
[DefaultValue(true)]
public bool Fullscreenable { get; set; } = true; // FIX: previously defaulted to false in C#
/// <summary>
/// Whether to show the window in taskbar. Default is false.