mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Fix crash when taking screenshot before a profile is open.
This commit is contained in:
parent
cb1a6f97bc
commit
c6c11fd4f9
@ -1345,7 +1345,8 @@ void MainWindow::on_actionCheck_for_Updates_triggered()
|
|||||||
bool toolbox_visible = false;
|
bool toolbox_visible = false;
|
||||||
void MainWindow::on_action_Screenshot_triggered()
|
void MainWindow::on_action_Screenshot_triggered()
|
||||||
{
|
{
|
||||||
daily->hideSpaceHogs();
|
if (daily)
|
||||||
|
daily->hideSpaceHogs();
|
||||||
toolbox_visible = ui->toolBox->isVisible();
|
toolbox_visible = ui->toolBox->isVisible();
|
||||||
ui->toolBox->hide();
|
ui->toolBox->hide();
|
||||||
QTimer::singleShot(250, this, SLOT(DelayedScreenshot()));
|
QTimer::singleShot(250, this, SLOT(DelayedScreenshot()));
|
||||||
@ -1393,7 +1394,8 @@ void MainWindow::DelayedScreenshot()
|
|||||||
} else {
|
} else {
|
||||||
Notify(tr("Screenshot saved to file \"%1\"").arg(QDir::toNativeSeparators(a)));
|
Notify(tr("Screenshot saved to file \"%1\"").arg(QDir::toNativeSeparators(a)));
|
||||||
}
|
}
|
||||||
daily->showSpaceHogs();
|
if (daily)
|
||||||
|
daily->showSpaceHogs();
|
||||||
ui->toolBox->setVisible(toolbox_visible);
|
ui->toolBox->setVisible(toolbox_visible);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user