Skip to content

Commit

Permalink
Fix console width
Browse files Browse the repository at this point in the history
  • Loading branch information
Elias Ruemmler committed Jan 25, 2019
1 parent 2075224 commit f9b3c9c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions NetworkScanner/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ public static void Main(string[] args)
var appName = string.Format("{0} v{1}", typeof(Scanner).Assembly.GetName().Name, versionInfo.ProductVersion);

Console.Title = appName;
Console.WindowWidth = 80;
Console.BufferWidth = 80;
Console.WindowWidth = 81;
Console.BufferWidth = 81;
Console.WindowHeight = 36;


Expand All @@ -47,7 +47,7 @@ public static void Main(string[] args)
Console.WriteLine();
Console.WriteLine(versionInfo.LegalCopyright);
Console.WriteLine(String.Empty.PadLeft(80, '-'));

Console.WriteLine();
#endregion
string baseIP = null;

Expand Down

0 comments on commit f9b3c9c

Please sign in to comment.