diff --git a/src/AddIns/Analysis/Profiler/Controller/ProfilerOptions.cs b/src/AddIns/Analysis/Profiler/Controller/ProfilerOptions.cs index 59aa33534f..a02a9ee68c 100644 --- a/src/AddIns/Analysis/Profiler/Controller/ProfilerOptions.cs +++ b/src/AddIns/Analysis/Profiler/Controller/ProfilerOptions.cs @@ -106,7 +106,7 @@ namespace ICSharpCode.Profiler.Controller /// Creates default ProfilerOptions. /// public ProfilerOptions() - : this(true, DefaultSharedMemorySize, false, false, true, true, DefaultCounters) + : this(true, DefaultSharedMemorySize, false, false, true, false, DefaultCounters) { } } diff --git a/src/AddIns/Analysis/Profiler/Frontend/AddIn/Src/OptionPanels/OptionWrapper.cs b/src/AddIns/Analysis/Profiler/Frontend/AddIn/Src/OptionPanels/OptionWrapper.cs index ecce3fcfbf..fa8feb2fbe 100644 --- a/src/AddIns/Analysis/Profiler/Frontend/AddIn/Src/OptionPanels/OptionWrapper.cs +++ b/src/AddIns/Analysis/Profiler/Frontend/AddIn/Src/OptionPanels/OptionWrapper.cs @@ -38,7 +38,7 @@ namespace ICSharpCode.Profiler.AddIn.OptionPanels } public static bool TrackEvents { - get { return properties.Get("TrackEvents", true); } + get { return properties.Get("TrackEvents", false); } set { properties.Set("TrackEvents", value); } } @@ -50,7 +50,7 @@ namespace ICSharpCode.Profiler.AddIn.OptionPanels properties.Get("DoNotProfileNetInternals", false), properties.Get("CombineRecursiveFunction", false), properties.Get("EnableDCAtStart", true), - properties.Get("TrackEvents", true), + properties.Get("TrackEvents", false), ProfilerOptions.DefaultCounters ); }