mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Added notification on succesful screenshot
This commit is contained in:
parent
e13128122c
commit
4989b492f3
@ -7,10 +7,11 @@
|
|||||||
</div>
|
</div>
|
||||||
<b>Changes in this version</b><br/>
|
<b>Changes in this version</b><br/>
|
||||||
<list>
|
<list>
|
||||||
<li>Added ability to pin graphs</li>
|
<li>Added ability to pin graphs to keep them on screen</li>
|
||||||
<li>Fixed tranlation loading on Mac</li>
|
<li>Fixed tranlation loading on Mac</li>
|
||||||
<li>Updated Dutch Tranlsations (Thanks Arie)</li>
|
<li>Updated Dutch Tranlsations (Thanks Arie)</li>
|
||||||
<li>Fixed overview graph legends showing wrong details</li>
|
<li>Fixed overview graph legends showing wrong details</li>
|
||||||
|
<li>F12 to Screenshot restored on Apple Mac platform</li>
|
||||||
</list>
|
</list>
|
||||||
|
|
||||||
<p>Sleep Well!</p>
|
<p>Sleep Well!</p>
|
||||||
|
@ -755,7 +755,10 @@ void MainWindow::DelayedScreenshot()
|
|||||||
a+="/screenshot-"+QDateTime::currentDateTime().toString(Qt::ISODate)+".png";
|
a+="/screenshot-"+QDateTime::currentDateTime().toString(Qt::ISODate)+".png";
|
||||||
|
|
||||||
qDebug() << "Saving screenshot to" << a;
|
qDebug() << "Saving screenshot to" << a;
|
||||||
if (!pixmap.save(a)) { Notify(tr("There was an error saving screenshot to file \"%1\"").arg(QDir::toNativeSeparators(a)));
|
if (!pixmap.save(a)) {
|
||||||
|
Notify(tr("There was an error saving screenshot to file \"%1\"").arg(QDir::toNativeSeparators(a)));
|
||||||
|
} else {
|
||||||
|
Notify(tr("Screenshot saved to file \"%1\"").arg(QDir::toNativeSeparators(a)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user