Skip to content

Commit

Permalink
feat: Removes window behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
Marconi Gomes committed Sep 11, 2023
1 parent 54d9ad5 commit 8c16cfa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions AMRPC WatchDog Desktop/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace AMRPC_WatchDog_Desktop
internal static class Program
{

private const string AppVersion = "v0.2.4";
private const string AppVersion = "v0.3.4";

[STAThread]
private static void Main()
Expand All @@ -16,9 +16,9 @@ private static void Main()

new Provider();

var window = new Window(AppVersion);
window.FormBorderStyle = FormBorderStyle.FixedSingle;
Application.Run(window);
// var window = new Window(AppVersion);
// window.FormBorderStyle = FormBorderStyle.FixedSingle;
Application.Run();
}
}
}

0 comments on commit 8c16cfa

Please sign in to comment.