From c67cd82bb3d4dcc9fd485faa79817cc2b247fc82 Mon Sep 17 00:00:00 2001 From: Phil Olynyk Date: Wed, 10 Apr 2019 15:52:47 -0400 Subject: [PATCH] Hide the Lifesaver button in the right panel if no Help --- oscar/mainwindow.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/oscar/mainwindow.cpp b/oscar/mainwindow.cpp index abbfad08..6d5d645b 100644 --- a/oscar/mainwindow.cpp +++ b/oscar/mainwindow.cpp @@ -138,6 +138,9 @@ void MainWindow::SetupGUI() ui->overviewButton->setDisabled(true); ui->statisticsButton->setDisabled(true); ui->importButton->setDisabled(true); +#ifdef helpless + ui->helpButton->setVisible(false); +#endif m_inRecalculation = false; m_restartRequired = false;