[Program] - Only catch Application/AppDomain execptions if not in DEBUG Config-mode.

This commit is contained in:
Ivandro Ismael 2016-09-01 00:49:24 +01:00
parent 294b3f646e
commit 67e868f55f
No known key found for this signature in database
GPG Key ID: A8832757DEFB7EDC

View File

@ -14,6 +14,8 @@ namespace Nikse.SubtitleEdit
[STAThread]
private static void Main()
{
#if !DEBUG
// Add the event handler for handling UI thread exceptions to the event.
Application.ThreadException += Application_ThreadException;
@ -21,7 +23,8 @@ namespace Nikse.SubtitleEdit
Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException);
// Add the event handler for handling non-UI thread exceptions to the event.
AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;
AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;
#endif
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);