Skip to content

Commit

Permalink
minimize start while snipping
Browse files Browse the repository at this point in the history
  • Loading branch information
msx752 committed Nov 15, 2016
1 parent d412029 commit 966168d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions MSniper/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,9 @@ static void Main(string[] _args)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
frm = new FWindow();
frm.Console.Arguments = _args;
frm = new FWindow {Console = {Arguments = _args}};
if (_args.Length > 0)
frm.WindowState = FormWindowState.Minimized;
Application.Run(frm);
}
#endregion
Expand Down

0 comments on commit 966168d

Please sign in to comment.