diff --git a/src/Resources/Locales/en_US.axaml b/src/Resources/Locales/en_US.axaml
index 193b5094..809222d1 100644
--- a/src/Resources/Locales/en_US.axaml
+++ b/src/Resources/Locales/en_US.axaml
@@ -382,7 +382,6 @@
History Commits
Restore windows
Use fixed tab width in titlebar
- Use macOS style titlebar
GIT
Install Path
Git version
diff --git a/src/Resources/Locales/zh_CN.axaml b/src/Resources/Locales/zh_CN.axaml
index a3d0201d..9e06fda4 100644
--- a/src/Resources/Locales/zh_CN.axaml
+++ b/src/Resources/Locales/zh_CN.axaml
@@ -381,7 +381,6 @@
最大历史提交数
启动时恢复上次打开的仓库
使用固定宽度的标题栏标签
- 使用macOS风格的标题栏
GIT配置
安装路径
Git 版本
diff --git a/src/ViewModels/Preference.cs b/src/ViewModels/Preference.cs
index 60f88d90..e9361e73 100644
--- a/src/ViewModels/Preference.cs
+++ b/src/ViewModels/Preference.cs
@@ -76,11 +76,6 @@ namespace SourceGit.ViewModels {
set => SetProperty(ref _useFixedTabWidth, value);
}
- public bool UseMacOSStyle {
- get => _useMacOSStyle;
- set => SetProperty(ref _useMacOSStyle, value);
- }
-
public bool UseTwoColumnsLayoutInHistories {
get => _useTwoColumnsLayoutInHistories;
set => SetProperty(ref _useTwoColumnsLayoutInHistories, value);
@@ -285,7 +280,6 @@ namespace SourceGit.ViewModels {
private int _maxHistoryCommits = 20000;
private bool _restoreTabs = false;
private bool _useFixedTabWidth = true;
- private bool _useMacOSStyle = OperatingSystem.IsMacOS();
private bool _useTwoColumnsLayoutInHistories = false;
private bool _useCombinedTextDiff = true;
diff --git a/src/Views/About.axaml b/src/Views/About.axaml
index fb18e474..9c13099c 100644
--- a/src/Views/About.axaml
+++ b/src/Views/About.axaml
@@ -13,17 +13,22 @@
SizeToContent="WidthAndHeight"
CanResize="False"
WindowStartupLocation="CenterScreen"
- ExtendClientAreaToDecorationsHint="True"
- ExtendClientAreaChromeHints="NoChrome">
-
-
+ ExtendClientAreaToDecorationsHint="{OnPlatform True, Linux=False}"
+ ExtendClientAreaChromeHints="{OnPlatform NoChrome, Linux=Default}">
+
+
+
+
+ IsVisible="{OnPlatform False, Windows=True}"/>
-
+