Fix close button width

This commit is contained in:
Isaac Marovitz 2023-01-03 18:35:02 -05:00
parent 50a2876f7b
commit 151908f9dc
No known key found for this signature in database
GPG key ID: 97250B2B09A132E1

View file

@ -90,7 +90,7 @@ namespace Ryujinx.Ava.UI.Controls
};
Style closeButton = new(x => x.Name("CloseButton"));
closeButton.Setters.Add(new Setter(WidthProperty, 70d));
closeButton.Setters.Add(new Setter(WidthProperty, 80d));
Style closeButtonParent = new(x => x.Name("CommandSpace"));
closeButtonParent.Setters.Add(new Setter(HorizontalAlignmentProperty, Avalonia.Layout.HorizontalAlignment.Right));