mirror of
https://github.com/sourcegit-scm/sourcegit
synced 2025-05-23 13:14:59 +00:00
Merge branch 'develop' into feature/allowing_to_checkout_commit
This commit is contained in:
commit
db9ca5ba25
56 changed files with 822 additions and 283 deletions
9
src/Converters/EnumConverters.cs
Normal file
9
src/Converters/EnumConverters.cs
Normal file
|
@ -0,0 +1,9 @@
|
|||
using Avalonia.Controls.Converters;
|
||||
|
||||
namespace SourceGit.Converters
|
||||
{
|
||||
public static class EnumConverters
|
||||
{
|
||||
public static readonly EnumToBoolConverter Equals = new EnumToBoolConverter();
|
||||
}
|
||||
}
|
|
@ -31,7 +31,7 @@ namespace SourceGit.Converters
|
|||
{
|
||||
if (state == WindowState.Maximized)
|
||||
{
|
||||
return new GridLength(30);
|
||||
return new GridLength(OperatingSystem.IsMacOS() ? 34 : 30);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue