Add new WCO height option

This commit is contained in:
rafael-aero
2022-02-10 23:00:33 +01:00
parent 56fe57db46
commit 26ba398428
3 changed files with 5 additions and 5 deletions

View File

@@ -226,6 +226,7 @@ namespace ElectronNET.API.Entities
/// Activate the Window Controls Overlay on Windows, when combined with <see cref="TitleBarStyle"/> = <see cref="TitleBarStyle.hidden"/>
/// </summary>
[SupportedOSPlatform("win")]
[SupportedOSPlatform("macos")]
[DefaultValue(null)]
public TitleBarOverlayConfig TitleBarOverlay { get; set; }

View File

@@ -31,7 +31,8 @@ namespace ElectronNET.API.Entities
public class TitleBarOverlayConfig
{
public string Color { get; set; }
public string SymbolColor { get; set; }
public string color { get; set; }
public string symbolColor { get; set; }
public int height { get; set; }
}
}