Remove border around Mii Editor loading image + increase margins

This update removes the dark shadow border from all loading images going forward, as it didn't look great. It also increases the spacing between the image and the loading text.
This commit is contained in:
_Neo_ 2025-12-21 17:28:01 +02:00
parent 02c0964923
commit 51b417ec85

View file

@ -107,24 +107,12 @@
HorizontalAlignment="Center"
VerticalAlignment="Center"
IsVisible="{Binding ShowLoadProgress}" ColumnDefinitions="Auto,*">
<Border
Grid.RowSpan="2"
Grid.Column="0"
<Image
Margin="20"
Width="256"
Height="256"
Margin="10"
Padding="4"
BorderBrush="Black"
BorderThickness="2"
BoxShadow="4 4 32 8 #40000000"
CornerRadius="3"
IsVisible="{Binding ShowLoadProgress}">
<Image
Width="256"
Height="256"
IsVisible="{Binding ShowLoadProgress}"
Source="{Binding SelectedIcon, Converter={x:Static helpers:BitmapArrayValueConverter.Instance}}" />
</Border>
IsVisible="{Binding ShowLoadProgress}"
Source="{Binding SelectedIcon, Converter={x:Static helpers:BitmapArrayValueConverter.Instance}}" />
<Grid
Grid.Column="1"
HorizontalAlignment="Stretch"