Skip to content

Commit

Permalink
Update Program.cs
Browse files Browse the repository at this point in the history
hellzerg#8
Start minimized
  • Loading branch information
Hu66er authored Jun 13, 2024
1 parent 60fd198 commit 14f3687
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Mint/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,10 @@ static void Main()
AppDomain.CurrentDomain.AssemblyResolve += CurrentDomain_AssemblyResolve;

Options.LoadSettings();
Application.Run(new MainForm());
MainForm form = new MainForm();
form.WindowState = FormWindowState.Minimized;
form.ShowInTaskbar = false;
Application.Run(form);
}
else
{
Expand Down

0 comments on commit 14f3687

Please sign in to comment.