Skip to content

Commit

Permalink
misc
Browse files Browse the repository at this point in the history
  • Loading branch information
Luckz committed May 28, 2019
1 parent cc195d0 commit bfc5b9a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ASFui/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ internal static class Program {
private static void Main() {
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
var asf = new ASFui();
asf.Text += @" - v" + Application.ProductVersion;
Application.Run(asf);
var asfUI = new ASFui();
asfUI.Text += @" - v" + Application.ProductVersion;
Application.Run(asfUI);
}
}
}

0 comments on commit bfc5b9a

Please sign in to comment.