Skip to content

Commit

Permalink
#3: Implement the actual closing when pressing Exit in the menu
Browse files Browse the repository at this point in the history
  • Loading branch information
ZehMatt committed Oct 11, 2024
1 parent b5aaf86 commit 09a67c3
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 13 deletions.
28 changes: 15 additions & 13 deletions Viewer/FormMain.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions Viewer/FormMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1049,5 +1049,10 @@ private void OnRandSeedClick(object sender, EventArgs e)
{
inputRandomSeed.Value = prng.Next();
}

private void OnClickExit(object sender, EventArgs e)
{
Close();
}
}
}

0 comments on commit 09a67c3

Please sign in to comment.