Fix crash when taking screenshot before a profile is open.

This commit is contained in:
Seeker4 2019-05-17 11:23:39 -07:00 committed by Guy Scharf
parent cb1a6f97bc
commit c6c11fd4f9

View File

@ -1345,6 +1345,7 @@ void MainWindow::on_actionCheck_for_Updates_triggered()
bool toolbox_visible = false;
void MainWindow::on_action_Screenshot_triggered()
{
if (daily)
daily->hideSpaceHogs();
toolbox_visible = ui->toolBox->isVisible();
ui->toolBox->hide();
@ -1393,6 +1394,7 @@ void MainWindow::DelayedScreenshot()
} else {
Notify(tr("Screenshot saved to file \"%1\"").arg(QDir::toNativeSeparators(a)));
}
if (daily)
daily->showSpaceHogs();
ui->toolBox->setVisible(toolbox_visible);