add some margin to update changelog

This commit is contained in:
IsWaffle 2024-06-30 12:15:45 -04:00
parent ae08be8367
commit b9a5ad9442
2 changed files with 2 additions and 0 deletions

View File

@ -21,6 +21,7 @@ public class InstallerUpdateViewModel : ViewModelBase
Task.Run(async () =>
{
await UpdateInfo.CheckForUpdates(Assembly.GetExecutingAssembly().GetName().Version);
if (!UpdateInfo.UpdateAvailable)
{
NavigateTo(new InstallPathSelectionViewModel(HostScreen, _debugging));

View File

@ -13,6 +13,7 @@
<ScrollViewer MaxHeight="250" Background="#323232">
<TextBlock Text="{Binding UpdateInfo.ChangeLog}"
TextWrapping="Wrap" MinHeight="100"
Margin="10"
/>
</ScrollViewer>
</StackPanel>