From 77cb76eceb217d5807a7a11668caa3b8d7bd2911 Mon Sep 17 00:00:00 2001 From: thomasbousquet Date: Wed, 21 Aug 2024 22:23:00 +0200 Subject: [PATCH] Add "download editor in browser" button to the upgrade window. Changed 'Open Release Notes' button label to 'Release Notes' to save a bit of horizontal space so that the upgrade window isn't too wide. --- UnityLauncherPro/UpgradeWindow.xaml | 15 +++++++++------ UnityLauncherPro/UpgradeWindow.xaml.cs | 14 ++++++++++++++ 2 files changed, 23 insertions(+), 6 deletions(-) diff --git a/UnityLauncherPro/UpgradeWindow.xaml b/UnityLauncherPro/UpgradeWindow.xaml index 9f175a3..1e5c437 100644 --- a/UnityLauncherPro/UpgradeWindow.xaml +++ b/UnityLauncherPro/UpgradeWindow.xaml @@ -5,7 +5,7 @@ xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:local="clr-namespace:UnityLauncherPro" mc:Ignorable="d" - Title="Upgrade Project Version" Height="533.165" Width="455" Background="{DynamicResource ThemeDarkestBackground}" MinWidth="319" MinHeight="555" ResizeMode="NoResize" WindowStartupLocation="CenterOwner" HorizontalAlignment="Left" VerticalAlignment="Top" PreviewKeyDown="Window_PreviewKeyDown" ShowInTaskbar="False"> + Title="Upgrade Project Version" Height="533.165" Width="552" Background="{DynamicResource ThemeDarkestBackground}" MinWidth="319" MinHeight="555" ResizeMode="NoResize" WindowStartupLocation="CenterOwner" HorizontalAlignment="Left" VerticalAlignment="Top" PreviewKeyDown="Window_PreviewKeyDown" ShowInTaskbar="False"> @@ -15,19 +15,22 @@