Show changelog when requested

This commit is contained in:
Kurt 2018-11-16 17:38:09 -08:00
parent a2eef9deae
commit 83f2d3f48f
2 changed files with 3 additions and 2 deletions

View file

@ -47,7 +47,7 @@ namespace PKHeX.WinForms
}
else if (showChangelog)
{
new About().ShowDialog();
new About(1).ShowDialog();
}
if (BAKprompt && !Directory.Exists(BackupPath))

View file

@ -4,12 +4,13 @@ namespace PKHeX.WinForms
{
public partial class About : Form
{
public About()
public About(int index = 0)
{
InitializeComponent();
WinFormsUtil.TranslateInterface(this, Main.CurrentLanguage);
RTB_Changelog.Text = Properties.Resources.changelog;
RTB_Shortcuts.Text = Properties.Resources.shortcuts;
TC_About.SelectedIndex = index;
}
}
}