From ea1773f95305d4e84a428d0856968218ea1cb195 Mon Sep 17 00:00:00 2001 From: Quincy Morgan Date: Fri, 10 May 2019 12:34:24 -0400 Subject: [PATCH] Fix error upon starting the walkthrough from the Help pane --- modules/ui/help.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui/help.js b/modules/ui/help.js index 87eb0c8c4..da69f9403 100644 --- a/modules/ui/help.js +++ b/modules/ui/help.js @@ -366,7 +366,7 @@ export function uiHelp(context) { function clickWalkthrough() { if (context.inIntro()) return; context.container().call(uiIntro(context)); - uiHelp.setVisible(false); + context.ui().togglePanes(); }