Ver código fonte

Avalonia UI: Fix letter "x" in Ryujinx logo being cut off (#5176)

Also make the pronunciation center-aligned
yell0wsuit 2 anos atrás
pai
commit
92b0b7d753
1 arquivos alterados com 11 adições e 2 exclusões
  1. 11 2
      src/Ryujinx.Ava/UI/Windows/AboutWindow.axaml

+ 11 - 2
src/Ryujinx.Ava/UI/Windows/AboutWindow.axaml

@@ -58,11 +58,20 @@
                         JustifyContent="SpaceAround"
                         JustifyContent="SpaceAround"
                         RowSpacing="2">
                         RowSpacing="2">
                         <TextBlock
                         <TextBlock
+                            HorizontalAlignment="Center"
+                            VerticalAlignment="Center"
                             FontSize="28"
                             FontSize="28"
                             FontWeight="Bold"
                             FontWeight="Bold"
                             Text="Ryujinx"
                             Text="Ryujinx"
-                            TextAlignment="Left" />
-                        <TextBlock Text="(REE-YOU-JINX)" TextAlignment="Left" />
+                            TextAlignment="Center"
+                            Width="100" />
+                        <TextBlock
+                            HorizontalAlignment="Center"
+                            VerticalAlignment="Center"
+                            FontSize="11"
+                            Text="(REE-YOU-JINX)"
+                            TextAlignment="Center"
+                            Width="100" />
                     </flex:FlexPanel>
                     </flex:FlexPanel>
                 </Grid>
                 </Grid>
                 <TextBlock
                 <TextBlock