mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Perform UI updates in bulk before/after screenshot
Fixes 0000074
This commit is contained in:
parent
498e15c56b
commit
a2ff7ef95e
@ -1345,10 +1345,12 @@ 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()
|
||||||
{
|
{
|
||||||
|
setUpdatesEnabled(false);
|
||||||
if (daily)
|
if (daily)
|
||||||
daily->hideSpaceHogs();
|
daily->hideSpaceHogs();
|
||||||
toolbox_visible = ui->toolBox->isVisible();
|
toolbox_visible = ui->toolBox->isVisible();
|
||||||
ui->toolBox->hide();
|
ui->toolBox->hide();
|
||||||
|
setUpdatesEnabled(true);
|
||||||
QTimer::singleShot(250, this, SLOT(DelayedScreenshot()));
|
QTimer::singleShot(250, this, SLOT(DelayedScreenshot()));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1381,10 +1383,12 @@ 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)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
setUpdatesEnabled(false);
|
||||||
if (daily)
|
if (daily)
|
||||||
daily->showSpaceHogs();
|
daily->showSpaceHogs();
|
||||||
ui->toolBox->setVisible(toolbox_visible);
|
ui->toolBox->setVisible(toolbox_visible);
|
||||||
|
setUpdatesEnabled(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::on_actionView_Oximetry_triggered()
|
void MainWindow::on_actionView_Oximetry_triggered()
|
||||||
|
Loading…
Reference in New Issue
Block a user