Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
rid: linux-x64
- os: windows-2022
rid: win-x64
- os: macos-14
- os: macos-26
rid: osx-arm64

env:
Expand Down
7 changes: 4 additions & 3 deletions src/ElectronNET.API/API/Entities/BrowserWindowOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,11 @@ public class BrowserWindowOptions

/// <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.
Expand Down