diff --git a/libse/LanguageStructure.cs b/libse/LanguageStructure.cs index 10f392a62..2eb76abdb 100644 --- a/libse/LanguageStructure.cs +++ b/libse/LanguageStructure.cs @@ -1850,7 +1850,7 @@ public string DurationMaximumMilliseconds { get; set; } public string MinimumGapMilliseconds { get; set; } public string MaximumLines { get; set; } - + public string SubtitleFont { get; set; } public string SubtitleFontSize { get; set; } public string SubtitleBold { get; set; } diff --git a/src/Program.cs b/src/Program.cs index 4059986af..b6839074d 100644 --- a/src/Program.cs +++ b/src/Program.cs @@ -14,7 +14,6 @@ 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; @@ -23,7 +22,7 @@ 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();