Skip to content

Commit

Permalink
Don't hide console before processing shell args
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchLeaders committed Jul 4, 2023
1 parent c6a95f0 commit 3bfab89
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/CommandProcessor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ public static void Process(List<string> args)
{
string[] files = args.Where(File.Exists).ToArray();
if (files.Length == args.Count) {
WindowHelper.SetWindowMode(WindowMode.Hidden);
foreach (string file in files) {
ProcessShellInput(file);
}
Expand Down

0 comments on commit 3bfab89

Please sign in to comment.