From c6c11fd4f904cf10ae50e48b1f031d376e335039 Mon Sep 17 00:00:00 2001 From: Seeker4 Date: Fri, 17 May 2019 11:23:39 -0700 Subject: [PATCH] Fix crash when taking screenshot before a profile is open. --- oscar/mainwindow.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/oscar/mainwindow.cpp b/oscar/mainwindow.cpp index 82800b70..a95eb658 100644 --- a/oscar/mainwindow.cpp +++ b/oscar/mainwindow.cpp @@ -1345,7 +1345,8 @@ void MainWindow::on_actionCheck_for_Updates_triggered() bool toolbox_visible = false; void MainWindow::on_action_Screenshot_triggered() { - daily->hideSpaceHogs(); + if (daily) + daily->hideSpaceHogs(); toolbox_visible = ui->toolBox->isVisible(); ui->toolBox->hide(); QTimer::singleShot(250, this, SLOT(DelayedScreenshot())); @@ -1393,7 +1394,8 @@ void MainWindow::DelayedScreenshot() } else { Notify(tr("Screenshot saved to file \"%1\"").arg(QDir::toNativeSeparators(a))); } - daily->showSpaceHogs(); + if (daily) + daily->showSpaceHogs(); ui->toolBox->setVisible(toolbox_visible); }