mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-03-14 22:40:18 +00:00
Fix appearence on German
This commit is contained in:
parent
c6cd6f5477
commit
9e8fa2f8ea
2 changed files with 5 additions and 3 deletions
|
@ -79,18 +79,20 @@
|
||||||
LineHeight="12" />
|
LineHeight="12" />
|
||||||
<TextBlock
|
<TextBlock
|
||||||
HorizontalAlignment="Center"
|
HorizontalAlignment="Center"
|
||||||
MaxLines="2"
|
Width="200"
|
||||||
Text="{locale:Locale AboutDisclaimerMessage}"
|
Text="{locale:Locale AboutDisclaimerMessage}"
|
||||||
TextAlignment="Center"
|
TextAlignment="Center"
|
||||||
|
TextWrapping="Wrap"
|
||||||
FontSize="10"
|
FontSize="10"
|
||||||
LineHeight="12" />
|
LineHeight="12" />
|
||||||
<TextBlock
|
<TextBlock
|
||||||
Name="AmiiboLabel"
|
Name="AmiiboLabel"
|
||||||
HorizontalAlignment="Center"
|
HorizontalAlignment="Center"
|
||||||
MaxLines="2"
|
Width="200"
|
||||||
PointerPressed="AmiiboLabel_OnPointerPressed"
|
PointerPressed="AmiiboLabel_OnPointerPressed"
|
||||||
Text="{locale:Locale AboutAmiiboDisclaimerMessage}"
|
Text="{locale:Locale AboutAmiiboDisclaimerMessage}"
|
||||||
TextAlignment="Center"
|
TextAlignment="Center"
|
||||||
|
TextWrapping="Wrap"
|
||||||
FontSize="10"
|
FontSize="10"
|
||||||
LineHeight="12" />
|
LineHeight="12" />
|
||||||
<StackPanel
|
<StackPanel
|
||||||
|
|
|
@ -33,7 +33,7 @@ namespace Ryujinx.Ava.UI.Windows
|
||||||
};
|
};
|
||||||
|
|
||||||
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