Skip to content
This repository has been archived by the owner on Sep 18, 2022. It is now read-only.

Commit

Permalink
Fixed crash handler title bar icon and text
Browse files Browse the repository at this point in the history
  • Loading branch information
craftersmine committed Mar 4, 2019
1 parent efbd357 commit ee74327
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.

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

1 change: 1 addition & 0 deletions craftersmine.EtherEngine.Core/Forms/CrashHandlerForm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ public CrashHandlerForm(Exception ex)
{
InitializeComponent();
icon.Image = SystemIcons.Error.ToBitmap();
Icon = SystemIcons.Error;
msg.Text = msg.Text.Replace("{message}", ex.Message);
hres.Text = hres.Text.Replace("{hres}", "0x" + ex.HResult.ToString("X"));
stacktrace.Text = ex.StackTrace;
Expand Down

0 comments on commit ee74327

Please sign in to comment.