From 24e63b62c739dc578df56242bdccb3b9d545db92 Mon Sep 17 00:00:00 2001 From: Eusebiu Marcu Date: Wed, 16 Mar 2011 16:01:37 +0200 Subject: [PATCH] enable "show internal types" when debugger start --- ILSpy/Commands/DebuggerCommands.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ILSpy/Commands/DebuggerCommands.cs b/ILSpy/Commands/DebuggerCommands.cs index 656f95ef3..49b47a40f 100644 --- a/ILSpy/Commands/DebuggerCommands.cs +++ b/ILSpy/Commands/DebuggerCommands.cs @@ -143,6 +143,9 @@ namespace ICSharpCode.ILSpy.Commands foreach (var item in buttons) { item.IsEnabled = enable; } + + // internal types + MainWindow.Instance.sessionSettings.FilterSettings.ShowInternalApi = true; } void CurrentDebugger_IsProcessRunningChanged(object sender, EventArgs e)