commit 766c44173c83ec5b4eb4a4cc202e78bf35917724
Author: Nathan Ho <nathan@snappizz.com>
Date:   Sat Jun 8 15:55:47 2019 -0700

    scide: Remove IDE help menu item when SC_USE_QTWEBENGINE is off

diff --git a/editors/sc-ide/widgets/main_window.cpp b/editors/sc-ide/widgets/main_window.cpp
index 864c33c9a..cfe436212 100644
--- a/editors/sc-ide/widgets/main_window.cpp
+++ b/editors/sc-ide/widgets/main_window.cpp
@@ -422,10 +422,12 @@ void MainWindow::createActions() {
     connect(action, SIGNAL(triggered()), this, SLOT(openHelp()));
     settings->addAction(action, "help-browser", helpCategory);
 
+#ifdef SC_USE_QTWEBENGINE
     mActions[HelpAboutIDE] = action =
         new QAction(QIcon::fromTheme("system-help"), tr("How to Use SuperCollider IDE"), this);
     action->setStatusTip(tr("Open the SuperCollider IDE guide"));
     connect(action, SIGNAL(triggered()), this, SLOT(openHelpAboutIDE()));
+#endif // SC_USE_QTWEBENGINE
 
     mActions[ReportABug] = action = new QAction(QIcon::fromTheme("system-help"), tr("Report a bug..."), this);
     action->setStatusTip(tr("Report a bug"));
