浏览代码

Flip alt minimize rotate button on macOS

Ruben 4 月之前
父节点
当前提交
b3d325af41
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      src/PicView.Avalonia/Views/MainView.axaml.cs

+ 1 - 0
src/PicView.Avalonia/Views/MainView.axaml.cs

@@ -37,6 +37,7 @@ public partial class MainView : UserControl
             AltButtonsPanel.HorizontalAlignment = HorizontalAlignment.Left; 
             AltButtonsPanel.HorizontalAlignment = HorizontalAlignment.Left; 
             AltButtonsPanel.Children.Move(AltButtonsPanel.Children.IndexOf(AltClose),0);
             AltButtonsPanel.Children.Move(AltButtonsPanel.Children.IndexOf(AltClose),0);
             AltButtonsPanel.Children.Move(AltButtonsPanel.Children.IndexOf(AltMinimize),2);
             AltButtonsPanel.Children.Move(AltButtonsPanel.Children.IndexOf(AltMinimize),2);
+            AltMinimize.RenderTransform = new ScaleTransform{ScaleX = -1};
         }
         }
         else
         else
         {
         {