Skip to content

Commit f36d917

Browse files
committed
correct main form variable reference
1 parent d62bf47 commit f36d917

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,9 @@ static void Main()
5757
{
5858
using (var nativeHelper = new CoreFunctionsManager())
5959
{
60-
mainForm = new MainForm(nativeHelper);
60+
MainForm = new MainForm(nativeHelper);
6161

62-
Application.Run(mainForm);
62+
Application.Run(MainForm);
6363
}
6464
}
6565
catch (Exception ex)

0 commit comments

Comments
 (0)