Browse Source

Add DockGroup assignment for cross-platform compatibility in DebugStepsPaneModel

pull/3642/head
Lex Li 3 months ago
parent
commit
d12f94280a
  1. 4
      ILSpy/ViewModels/DebugStepsPaneModel.cs

4
ILSpy/ViewModels/DebugStepsPaneModel.cs

@ -33,6 +33,10 @@ namespace ICSharpCode.ILSpy.ViewModels @@ -33,6 +33,10 @@ namespace ICSharpCode.ILSpy.ViewModels
{
ContentId = PaneContentId;
Title = Properties.Resources.DebugSteps;
#if CROSS_PLATFORM
// Declare this tool belongs to the LeftDock group (same as AssemblyTreeModel and AnalyzerTreeViewModel)
DockGroup = "LeftDock";
#endif
}
}
}

Loading…
Cancel
Save