diff --git a/MatterControlLib/SetupWizard/HelpTreePanel.cs b/MatterControlLib/SetupWizard/HelpTreePanel.cs index 066750184..0d53963ba 100644 --- a/MatterControlLib/SetupWizard/HelpTreePanel.cs +++ b/MatterControlLib/SetupWizard/HelpTreePanel.cs @@ -380,7 +380,10 @@ namespace MatterHackers.MatterControl { var newNode = new HelpArticleTreeNode(helpArticle, theme); - nodesByPath[helpArticle.Path] = newNode; + if (!string.IsNullOrEmpty(helpArticle.Path)) + { + nodesByPath[helpArticle.Path] = newNode; + } if (helpArticle.Name == guideKey || (guideKey != null