mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-10 22:54:14 +00:00
parent
0dc9deb137
commit
81487af9ba
1 changed files with 1 additions and 1 deletions
|
@ -212,7 +212,7 @@ public partial class Main : Form
|
|||
{
|
||||
var date = $"{2000 + ver.Major:00}{ver.Minor:00}{ver.Build:00}";
|
||||
L_UpdateAvailable.Text = $"{MsgProgramUpdateAvailable} {date}";
|
||||
L_UpdateAvailable.Click += (_, _) => Process.Start(ThreadPath);
|
||||
L_UpdateAvailable.Click += (_, _) => Process.Start(new ProcessStartInfo(ThreadPath) { UseShellExecute = true });
|
||||
L_UpdateAvailable.Visible = true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue