diff --git a/src/AddIns/Debugger/Debugger.AddIn/Pads/ParallelPad/ParallelStackPad.cs b/src/AddIns/Debugger/Debugger.AddIn/Pads/ParallelPad/ParallelStackPad.cs index 3553bc1e15..864af3c958 100644 --- a/src/AddIns/Debugger/Debugger.AddIn/Pads/ParallelPad/ParallelStackPad.cs +++ b/src/AddIns/Debugger/Debugger.AddIn/Pads/ParallelPad/ParallelStackPad.cs @@ -118,7 +118,8 @@ namespace ICSharpCode.SharpDevelop.Gui.Pads AddChildren(stack); } - surface.SetGraph(graph); + if (graph.VertexCount > 0) + surface.SetGraph(graph); } }