Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Karlaš <david.karlas@xamarin.com>2015-01-19 09:42:18 +0300
committerDavid Karlaš <david.karlas@xamarin.com>2015-01-19 09:42:18 +0300
commit04ca1239e18aa9892b0a5eff9e13f782b0a7b791 (patch)
treec9201cee6d2afd7e94b129a484d393796ff7a992 /main/src/addins/MonoDevelop.Debugger
parent5a13521caba35d64beff57ba12719e2155b3f4bc (diff)
[Debugger] Disabling auto loading of disassembly view until ProjectOnlyCode logic is fixed in runtime
Diffstat (limited to 'main/src/addins/MonoDevelop.Debugger')
-rw-r--r--main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger/Initializer.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger/Initializer.cs b/main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger/Initializer.cs
index 33555fc930..530207a977 100644
--- a/main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger/Initializer.cs
+++ b/main/src/addins/MonoDevelop.Debugger/MonoDevelop.Debugger/Initializer.cs
@@ -126,7 +126,8 @@ namespace MonoDevelop.Debugger
if (!sf.IsExternalCode &&
sf.SourceLocation.Line != -1 &&
!string.IsNullOrEmpty (sf.SourceLocation.FileName) &&
- (DebuggingService.CurrentSessionSupportsFeature (DebuggerFeatures.Disassembly) || System.IO.File.Exists (sf.SourceLocation.FileName))) {
+ //Uncomment condition below once logic for ProjectOnlyCode in runtime is fixed
+ (/*DebuggingService.CurrentSessionSupportsFeature (DebuggerFeatures.Disassembly) ||*/ System.IO.File.Exists (sf.SourceLocation.FileName))) {
if (n != DebuggingService.CurrentFrameIndex)
DebuggingService.CurrentFrameIndex = n;
break;