This repository was archived by the owner on Oct 16, 2020. It is now read-only.
File tree Expand file tree Collapse file tree
src/AddIns/Debugger/Debugger.AddIn/Options Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2828using System . Windows . Media ;
2929
3030using ICSharpCode . Core ;
31+ using ICSharpCode . SharpDevelop ;
3132using ICSharpCode . SharpDevelop . Gui ;
3233using ICSharpCode . SharpDevelop . Services ;
3334
@@ -60,13 +61,14 @@ public override void LoadOptions()
6061 exceptionFilterList = DebuggingOptions . Instance . ExceptionFilterList . ToList ( ) ;
6162
6263 if ( exceptionFilterList . Count == 0 ) {
63- exceptionFilterList . Add ( new ExceptionFilterEntry ( "* " ) ) ;
64+ exceptionFilterList . Add ( new ExceptionFilterEntry ( "System.Exception " ) ) ;
6465 }
6566 }
6667
6768 void ChooseExceptionsClick ( object sender , RoutedEventArgs e )
6869 {
6970 var dialog = new ChooseExceptionsDialog ( exceptionFilterList ) ;
71+ dialog . Owner = SD . Workbench . MainWindow ;
7072 if ( dialog . ShowDialog ( ) == true ) {
7173 exceptionFilterList = dialog . ExceptionFilterList ;
7274 }
You can’t perform that action at this time.
0 commit comments