mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-14 20:00:17 +00:00
Fix close button width
This commit is contained in:
parent
50a2876f7b
commit
151908f9dc
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ namespace Ryujinx.Ava.UI.Controls
|
||||||
};
|
};
|
||||||
|
|
||||||
Style closeButton = new(x => x.Name("CloseButton"));
|
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"));
|
Style closeButtonParent = new(x => x.Name("CommandSpace"));
|
||||||
closeButtonParent.Setters.Add(new Setter(HorizontalAlignmentProperty, Avalonia.Layout.HorizontalAlignment.Right));
|
closeButtonParent.Setters.Add(new Setter(HorizontalAlignmentProperty, Avalonia.Layout.HorizontalAlignment.Right));
|
||||||
|
|
Loading…
Reference in a new issue