fix: disable native system menubar on macOS (#106)

This commit is contained in:
leo 2024-05-05 13:01:04 +08:00
parent 65fbeae07e
commit 7da184c55b

View file

@ -19,6 +19,12 @@ namespace SourceGit.Native
{
DefaultFamilyName = "PingFang SC",
});
builder.With(new MacOSPlatformOptions()
{
DisableNativeMenus = true,
DisableDefaultApplicationMenuItems = true,
});
}
public string FindGitExecutable()