diff --git a/src/Views/Launcher.axaml.cs b/src/Views/Launcher.axaml.cs index 3b171660..6104877a 100644 --- a/src/Views/Launcher.axaml.cs +++ b/src/Views/Launcher.axaml.cs @@ -31,7 +31,13 @@ namespace SourceGit.Views public bool HasRightCaptionButton { - get => OperatingSystem.IsWindows() || !Native.OS.UseSystemWindowFrame; + get + { + if (OperatingSystem.IsLinux()) + return !Native.OS.UseSystemWindowFrame; + + return OperatingSystem.IsWindows(); + } } public Launcher()