ux: titlebar height on macOS

This commit is contained in:
leo 2024-05-23 09:44:56 +08:00
parent 82b00b357b
commit e9208ef112

View file

@ -31,7 +31,7 @@ namespace SourceGit.Converters
{ {
if (state == WindowState.Maximized) if (state == WindowState.Maximized)
{ {
return new GridLength(30); return new GridLength(OperatingSystem.IsMacOS() ? 34 : 30);
} }
else else
{ {