mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
fix: disable native system menubar on macOS (#106)
This commit is contained in:
parent
65fbeae07e
commit
7da184c55b
1 changed files with 6 additions and 0 deletions
|
@ -19,6 +19,12 @@ namespace SourceGit.Native
|
||||||
{
|
{
|
||||||
DefaultFamilyName = "PingFang SC",
|
DefaultFamilyName = "PingFang SC",
|
||||||
});
|
});
|
||||||
|
|
||||||
|
builder.With(new MacOSPlatformOptions()
|
||||||
|
{
|
||||||
|
DisableNativeMenus = true,
|
||||||
|
DisableDefaultApplicationMenuItems = true,
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
public string FindGitExecutable()
|
public string FindGitExecutable()
|
||||||
|
|
Loading…
Reference in a new issue